Datasets:
ArXiv:
License:
Update dataset card
Browse files
README.md
CHANGED
|
@@ -1,3 +1,53 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
pretty_name: Scalable Real2Sim
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Scalable Real2Sim
|
| 7 |
+
|
| 8 |
+
This repository hosts the benchmark dataset and model weights for **Scalable Real2Sim: Physics-Aware Asset Generation Via Robotic Pick-and-Place Setups**.
|
| 9 |
+
|
| 10 |
+
- Project website: https://scalable-real2sim.github.io/
|
| 11 |
+
- Paper: https://arxiv.org/abs/2503.00370
|
| 12 |
+
- Code: https://github.com/nepfaff/scalable-real2sim
|
| 13 |
+
|
| 14 |
+
## Repository Layout
|
| 15 |
+
|
| 16 |
+
- `scalable_real2sim_benchmark_dataset/object_data/*.tar`: one archive per object directory under `object_data/`
|
| 17 |
+
- `scalable_real2sim_benchmark_dataset/robot_system_id_data/`: unpacked robot system identification data
|
| 18 |
+
- `scalable_real2sim_model_weights/`: unpacked model weights used by the pipeline
|
| 19 |
+
|
| 20 |
+
The `object_data` subdirectories are stored as individual tar archives to keep the Hugging Face repository at a manageable file count while preserving object-level downloads.
|
| 21 |
+
|
| 22 |
+
## Extraction
|
| 23 |
+
|
| 24 |
+
To extract all object archives in place:
|
| 25 |
+
|
| 26 |
+
```bash
|
| 27 |
+
cd scalable_real2sim_benchmark_dataset/object_data
|
| 28 |
+
for archive in *.tar; do
|
| 29 |
+
tar -xf "$archive"
|
| 30 |
+
done
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
After extraction, `scalable_real2sim_benchmark_dataset/object_data/` will contain both the original `.tar` files and the extracted object directories. If you no longer need the archives locally, you can remove them after extraction.
|
| 34 |
+
|
| 35 |
+
## Citation
|
| 36 |
+
|
| 37 |
+
If you use this dataset or the associated assets, please cite:
|
| 38 |
+
|
| 39 |
+
```bibtex
|
| 40 |
+
@article{pfaff2025_scalable_real2sim,
|
| 41 |
+
author = {Pfaff, Nicholas and Fu, Evelyn and Binagia, Jeremy and Isola, Phillip and Tedrake, Russ},
|
| 42 |
+
title = {Scalable Real2Sim: Physics-Aware Asset Generation Via Robotic Pick-and-Place Setups},
|
| 43 |
+
year = {2025},
|
| 44 |
+
eprint = {2503.00370},
|
| 45 |
+
archivePrefix = {arXiv},
|
| 46 |
+
primaryClass = {cs.RO},
|
| 47 |
+
url = {https://arxiv.org/abs/2503.00370},
|
| 48 |
+
}
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
## License
|
| 52 |
+
|
| 53 |
+
This repository is released under the MIT License. See the accompanying `LICENSE` file for the full text.
|