nielsr HF Staff commited on
Commit
4a54ed2
·
verified ·
1 Parent(s): e2904df

Add dataset card for SceneSmith preprocessed data

Browse files

Hi, I'm Niels from the community science team at Hugging Face.

This PR adds a dataset card for the SceneSmith preprocessed data. It includes:
- Metadata for task categories (`robotics`) and the license (`mit`).
- Links to the paper, project page, and GitHub repository.
- A description of the preprocessed assets (ArtVIP and AmbientCG embeddings).
- Sample usage instructions for downloading the data using the Hugging Face CLI, as documented in the official repository.

Files changed (1) hide show
  1. README.md +36 -60
README.md CHANGED
@@ -1,93 +1,69 @@
1
  ---
2
- license: apache-2.0
 
 
3
  tags:
4
- - robotics
5
- - simulation
6
- - 3d-assets
7
- - articulated-objects
8
- - drake
9
- - sdf
10
- pretty_name: SceneSmith Preprocessed Data
11
  ---
12
 
13
  # SceneSmith Preprocessed Data
14
 
15
- Preprocessed 3D assets for use with [SceneSmith](https://github.com/nepfaff/scenesmith), a VLM-agent-based system for generating physically realistic, interactive indoor scenes.
16
 
17
- ## ArtVIP (Articulated Objects)
18
 
19
- Simulation-ready articulated objects (cabinets, drawers, appliances, etc.) converted from the [ArtVIP](https://huggingface.co/datasets/x-humanoid-robomind/ArtVIP) dataset. Assets have been converted from USD to Drake SDFormat using [mesh-to-sim-asset](https://github.com/nepfaff/mesh-to-sim-asset), with:
20
 
21
- - **Drake SDFormat (.sdf)** model files with articulated joints
22
- - **Visual meshes** in glTF and OBJ formats
23
- - **Collision geometries** via convex decomposition (two variants available)
24
- - **Estimated physical properties** (mass, inertia per link)
25
- - **Pre-computed CLIP embeddings** for text-based retrieval
26
 
27
- ### Variants
 
 
28
 
29
- | Archive | Collision Method | Description |
30
- |---------|-----------------|-------------|
31
- | `artvip/artvip_vhacd.tar.gz` | VHACD | Tighter collision geometries (recommended) |
32
- | `artvip/artvip_coacd.tar.gz` | CoACD | Can produce faster simulations |
33
 
34
- Both variants include identical CLIP embeddings for retrieval.
35
 
36
- ### Usage with SceneSmith
 
37
 
38
- Download your preferred variant and extract to `data/artvip_sdf/`:
39
-
40
- ```sh
41
- # Download VHACD variant (recommended)
42
  huggingface-cli download nepfaff/scenesmith-preprocessed-data \
43
  artvip/artvip_vhacd.tar.gz --repo-type dataset --local-dir .
44
  mkdir -p data/artvip_sdf
45
  tar xzf artvip/artvip_vhacd.tar.gz -C data/artvip_sdf
46
- rm -rf artvip
47
 
48
- # Or download CoACD variant
 
49
  huggingface-cli download nepfaff/scenesmith-preprocessed-data \
50
  artvip/artvip_coacd.tar.gz --repo-type dataset --local-dir .
51
  mkdir -p data/artvip_sdf
52
  tar xzf artvip/artvip_coacd.tar.gz -C data/artvip_sdf
53
- rm -rf artvip
54
  ```
55
 
56
- ### Asset Categories
57
-
58
- | Category | Description |
59
- |----------|-------------|
60
- | `large_furniture/` | Cupboards, wardrobes, etc. |
61
- | `small_furniture/` | Nightstands, side tables, etc. |
62
- | `major_appliances/` | Refrigerators, washing machines, etc. |
63
- | `small_appliances/` | Microwaves, toasters, etc. |
64
- | `household_items/` | Storage boxes, bins, etc. |
65
-
66
- ### Manual Preprocessing
67
-
68
- To preprocess ArtVIP assets yourself (or to process updated versions), use [mesh-to-sim-asset](https://github.com/nepfaff/mesh-to-sim-asset) to convert from USD to Drake SDFormat.
69
-
70
- ## AmbientCG Material Embeddings
71
 
72
- Pre-computed CLIP embeddings for [AmbientCG](https://ambientcg.com/) PBR materials, enabling text-based material retrieval for walls, floors, and surfaces.
73
-
74
- The embeddings are computed from AmbientCG preview images using CLIP (ViT-H-14-378-quickgelu, 1024D).
75
-
76
- > **Note:** You still need to download the actual material textures from AmbientCG separately (see SceneSmith README). This dataset only contains the pre-computed embeddings to skip the computation step.
77
-
78
- ### Usage with SceneSmith
79
-
80
- ```sh
81
  huggingface-cli download nepfaff/scenesmith-preprocessed-data \
82
  --repo-type dataset \
83
  --include "ambientcg/embeddings/**" \
84
  --local-dir data/scenesmith-preprocessed-data
85
  mv data/scenesmith-preprocessed-data/ambientcg/embeddings data/materials/embeddings
86
- rm -rf data/scenesmith-preprocessed-data
87
  ```
88
 
89
- ## Attribution
90
-
91
- The articulated object assets are derived from the [ArtVIP](https://huggingface.co/datasets/x-humanoid-robomind/ArtVIP) dataset, licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
92
-
93
- > Zhao Jin, Zhengping Che, Tao Li, Zhen Zhao, Kun Wu, Yuheng Zhang, Yinuo Zhao, Zehui Liu, Qiang Zhang, Xiaozhu Ju, Jing Tian, Yousong Xue, Jian Tang. *ArtVIP: Articulated Digital Assets of Visual Realism, Modular Interaction, and Physical Fidelity for Robot Learning.* 2025.
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
  tags:
6
+ - simulation
7
+ - 3d
8
+ - scene-generation
 
 
 
 
9
  ---
10
 
11
  # SceneSmith Preprocessed Data
12
 
13
+ This repository contains preprocessed assets and embeddings for the paper [SceneSmith: Agentic Generation of Simulation-Ready Indoor Scenes](https://huggingface.co/papers/2602.09153).
14
 
15
+ [Project Page](https://scenesmith.github.io/) | [GitHub](https://github.com/nepfaff/scenesmith) | [arXiv](https://arxiv.org/abs/2602.09153)
16
 
17
+ SceneSmith is a hierarchical agentic framework that generates simulation-ready indoor environments from natural language prompts. This dataset repository provides the preprocessed data required for the framework, including articulated objects and material embeddings.
18
 
19
+ ## Dataset Description
 
 
 
 
20
 
21
+ The artifacts in this repository include:
22
+ - **ArtVIP Assets**: Preprocessed articulated furniture (cabinets, drawers, etc.) converted to Drake SDFormat with collision geometries and CLIP embeddings.
23
+ - **AmbientCG Embeddings**: Pre-computed CLIP embeddings for free CC0 PBR materials from [AmbientCG](https://ambientcg.com/), used for semantic material retrieval during scene generation.
24
 
25
+ ## Sample Usage
 
 
 
26
 
27
+ You can download specific parts of the dataset using the `huggingface-cli`.
28
 
29
+ ### Download ArtVIP Assets
30
+ To download the VHACD variant (recommended for tighter collision geometries):
31
 
32
+ ```bash
 
 
 
33
  huggingface-cli download nepfaff/scenesmith-preprocessed-data \
34
  artvip/artvip_vhacd.tar.gz --repo-type dataset --local-dir .
35
  mkdir -p data/artvip_sdf
36
  tar xzf artvip/artvip_vhacd.tar.gz -C data/artvip_sdf
37
+ ```
38
 
39
+ Alternatively, to download the CoACD variant (which can produce faster simulations):
40
+ ```bash
41
  huggingface-cli download nepfaff/scenesmith-preprocessed-data \
42
  artvip/artvip_coacd.tar.gz --repo-type dataset --local-dir .
43
  mkdir -p data/artvip_sdf
44
  tar xzf artvip/artvip_coacd.tar.gz -C data/artvip_sdf
 
45
  ```
46
 
47
+ ### Download AmbientCG Material Embeddings
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
49
+ ```bash
 
 
 
 
 
 
 
 
50
  huggingface-cli download nepfaff/scenesmith-preprocessed-data \
51
  --repo-type dataset \
52
  --include "ambientcg/embeddings/**" \
53
  --local-dir data/scenesmith-preprocessed-data
54
  mv data/scenesmith-preprocessed-data/ambientcg/embeddings data/materials/embeddings
 
55
  ```
56
 
57
+ ## Citation
58
+
59
+ ```bibtex
60
+ @misc{scenesmith2026,
61
+ title={SceneSmith: Agentic Generation of Simulation-Ready Indoor Scenes},
62
+ author={Nicholas Pfaff and Thomas Cohn and Sergey Zakharov and Rick Cory and Russ Tedrake},
63
+ year={2026},
64
+ eprint={2602.09153},
65
+ archivePrefix={arXiv},
66
+ primaryClass={cs.RO},
67
+ url={https://arxiv.org/abs/2602.09153},
68
+ }
69
+ ```