nepfaff commited on
Commit
b6fb9f9
·
verified ·
1 Parent(s): e339eaf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +79 -3
README.md CHANGED
@@ -1,3 +1,79 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ | Directory | Collision Method | Description |
30
+ |-----------|-----------------|-------------|
31
+ | `artvip/vhacd/` | VHACD | Tighter collision geometries (recommended) |
32
+ | `artvip/coacd/` | 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 place it at `data/artvip_sdf/`:
39
+
40
+ ```sh
41
+ # Install Git LFS if needed
42
+ git lfs install
43
+
44
+ # Download VHACD variant (recommended)
45
+ huggingface-cli download nepfaff/scenesmith-preprocessed-data \
46
+ --repo-type dataset \
47
+ --include "artvip/vhacd/**" \
48
+ --local-dir data/scenesmith-preprocessed-data
49
+ mv data/scenesmith-preprocessed-data/artvip/vhacd data/artvip_sdf
50
+ rm -rf data/scenesmith-preprocessed-data
51
+
52
+ # Or download CoACD variant
53
+ huggingface-cli download nepfaff/scenesmith-preprocessed-data \
54
+ --repo-type dataset \
55
+ --include "artvip/coacd/**" \
56
+ --local-dir data/scenesmith-preprocessed-data
57
+ mv data/scenesmith-preprocessed-data/artvip/coacd data/artvip_sdf
58
+ rm -rf data/scenesmith-preprocessed-data
59
+ ```
60
+
61
+ ### Asset Categories
62
+
63
+ | Category | Description |
64
+ |----------|-------------|
65
+ | `large_furniture/` | Cupboards, wardrobes, etc. |
66
+ | `small_furniture/` | Nightstands, side tables, etc. |
67
+ | `major_appliances/` | Refrigerators, washing machines, etc. |
68
+ | `small_appliances/` | Microwaves, toasters, etc. |
69
+ | `household_items/` | Storage boxes, bins, etc. |
70
+
71
+ ### Manual Preprocessing
72
+
73
+ 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.
74
+
75
+ ## Attribution
76
+
77
+ 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).
78
+
79
+ > Qiaojun Yu, Ce Hao, Junbo Wang, Wenhai Liu, Liu Liu, Yao Mu, Cewu Lu. *ArtVIP: A Large-Scale Articulated Object Visual Interaction Pretraining Dataset.* 2025.