Add dataset card for WorldSculpt dataset
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-3d
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# WorldSculpt Dataset
|
| 8 |
+
|
| 9 |
+
This dataset accompanies the paper [WorldSculpt: Generating Compositional Worlds from Grounded Videos](https://huggingface.co/papers/2609.05416). It provides the **UE-MeshyScene** benchmark of densely cluttered scenes with hundreds of objects, per-object annotations, and ground-truth meshes, as well as additional Marble demo data for converting 3DGS worlds into compositional mesh scenes.
|
| 10 |
+
|
| 11 |
+
- **Project page:** [https://alaya-lab.github.io/WorldSculpt/](https://alaya-lab.github.io/WorldSculpt/)
|
| 12 |
+
- **Code:** [https://github.com/AlayaLab/WorldSculpt](https://github.com/AlayaLab/WorldSculpt)
|
| 13 |
+
|
| 14 |
+
## Download
|
| 15 |
+
|
| 16 |
+
The dataset can be downloaded with the Hugging Face CLI as described in the [GitHub README](https://github.com/AlayaLab/WorldSculpt):
|
| 17 |
+
|
| 18 |
+
```bash
|
| 19 |
+
# UE-MeshyScene
|
| 20 |
+
hf download AlayaLab/WorldSculpt_data --include "UE-MeshyScene/*" --local-dir ./input --repo-type=dataset
|
| 21 |
+
cd ./input/UE-MeshyScene
|
| 22 |
+
tar xvf scene*.tar
|
| 23 |
+
cd ../..
|
| 24 |
+
|
| 25 |
+
# Marble DEMO data
|
| 26 |
+
hf download AlayaLab/WorldSculpt_data --include "Marble/*" --local-dir ./input --repo-type=dataset
|
| 27 |
+
cd ./input/Marble
|
| 28 |
+
tar xvf Marble.tar.gz
|
| 29 |
+
cd ../..
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## License
|
| 33 |
+
|
| 34 |
+
Apache 2.0
|