Add dataset card for LeHome simulation assets (#1)
Browse files- Add dataset card for LeHome simulation assets (cebec886b2272b1077ab9d7172b26b20867bc04c)
- correct citation (2433096127c0d90c7051e51c6d79d42bf758fe3d)
- correct readme (65d6e6817cb47d0bca36ffb43a19818f456769cb)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# LeHome: A Simulation Environment for Deformable Object Manipulation in Household Scenarios
|
| 8 |
+
|
| 9 |
+
LeHome is a high-fidelity simulation platform designed for manipulating deformable objects (such as garments and food items) in household scenarios. It integrates various household environments and supports multiple robotic embodiments, emphasizing low-cost robots for end-to-end evaluation.
|
| 10 |
+
|
| 11 |
+
- **Paper:** [LeHome: A Simulation Environment for Deformable Object Manipulation in Household Scenarios](https://huggingface.co/papers/2604.22363)
|
| 12 |
+
- **Project Page:** [https://lehome-web.github.io/](https://lehome-web.github.io/)
|
| 13 |
+
- **GitHub Repository:** [https://github.com/lehome-official/lehome](https://github.com/lehome-official/lehome)
|
| 14 |
+
|
| 15 |
+
## Assets & Data Preparation
|
| 16 |
+
|
| 17 |
+
This repository contains the required simulation assets (Materials, scenes, objects, and robots). Install or update the Hugging Face CLI, then download the assets:
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
# Install or update the Hugging Face CLI
|
| 21 |
+
pip install --upgrade huggingface_hub
|
| 22 |
+
|
| 23 |
+
# This creates the Assets/ directory with the required simulation resources
|
| 24 |
+
hf download lehome/lehome_release --repo-type dataset --local-dir Assets
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
For detailed information on environment setup, dataset collection, and training, please refer to the [official documentation](https://github.com/lehome-official/lehome#documentation-index).
|
| 28 |
+
|
| 29 |
+
## Citation
|
| 30 |
+
|
| 31 |
+
```bibtex
|
| 32 |
+
@inproceedings{li2026lehome,
|
| 33 |
+
title={{LeHome}: A Simulation Environment for Deformable Object Manipulation in Household Scenarios},
|
| 34 |
+
author={Zeyi Li and Yushi Yang and Shawn Xie and Kyle Xu and Tianxing Chen and Yuran Wang and Zhenhao Shen and Yan Shen and Yue Chen and Wenjun Li and Yukun Zheng and Chaorui Zhang and Siyi Lin and Fei Teng and Hongjun Yang and Ming Chen and Steve Xie and Ruihai Wu},
|
| 35 |
+
booktitle={2026 IEEE International Conference on Robotics and Automation (ICRA)},
|
| 36 |
+
year={2026},
|
| 37 |
+
eprint={2604.22363},
|
| 38 |
+
archivePrefix={arXiv},
|
| 39 |
+
primaryClass={cs.RO},
|
| 40 |
+
url={https://arxiv.org/abs/2604.22363}
|
| 41 |
+
}
|
| 42 |
+
```
|