--- task_categories: - other tags: - 3d - articulated-objects - mesh pretty_name: Articulate-100 size_categories: - 10K_.tar`. Extracting an archive yields a directory `_/` containing the assets for that instance. ``` Articulate-100/ ├── Box_100129.tar ├── Box_102379.tar ├── Eyeglasses_101293.tar ├── ... ``` ## Usage Download the full dataset: ```python from huggingface_hub import snapshot_download local_dir = snapshot_download( repo_id="ArtMesh/Articulate-100", repo_type="dataset", ) ``` Download a single object: ```python from huggingface_hub import hf_hub_download path = hf_hub_download( repo_id="ArtMesh/Articulate-100", repo_type="dataset", filename="Box_100129.tar", ) ``` Extract: ```bash tar -xf Box_100129.tar ``` ## Source The object assets are derived from [PartNet-Mobility](https://sapien.ucsd.edu/browse), part of the SAPIEN project. Please consult the original dataset for terms governing use of the underlying assets.