PrimitiveAnything: Human-Crafted 3D Primitive Assembly Generation with Auto-Regressive Transformer
Paper
β’
2505.04622
β’
Published
β’
27
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
π Paper β’ π» [Github Repo] β’ π Project Page
This repository contains the test dataset presented in the paper PrimitiveAnything: Human-Crafted 3D Primitive Assembly Generation with Auto-Regressive Transformer.
PrimitiveAnything is a novel framework to decompose complex shapes into 3D primitive assemblies via the auto-regressive transformer.
basic_shapes_normbasic_shapes_norm_pc10000demo_glb: Demo GLB modelstest_pc: Test point cloudsYou can download the files directly from this repository or use the Hugging Face datasets library:
from huggingface_hub import hf_hub_download, list_repo_files
# Get list of all files in repo
files = list_repo_files(repo_id="hyz317/PrimitiveAnything", repo_type="dataset")
# Download each file
for file in files:
file_path = hf_hub_download(
repo_id="hyz317/PrimitiveAnything",
filename=file,
repo_type="dataset",
local_dir='./data'
)