Improve model card: Add license metadata and paper abstract
Browse filesThis PR enhances the model card for `TeleEmbodied/humanoidgen_model` by:
* Adding the `license: cc-by-nc-4.0` to the metadata section, as explicitly stated in the GitHub repository.
* Integrating the paper's abstract into the model card content for a more informative overview.
* Adjusting the title formatting for consistency with Markdown best practices.
* Adding a brief introductory sentence linking the repository content to the paper.
All existing links to the paper, code, homepage, dataset, and other models are correctly maintained.
Please review and merge this PR if it looks good.
README.md
CHANGED
|
@@ -1,17 +1,20 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
task_categories:
|
| 3 |
- robotics
|
| 4 |
-
|
| 5 |
---
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
</div>
|
| 10 |
<h5 align="center">
|
| 11 |
<a href="https://openhumanoidgen.github.io/"> π₯ Homepage</a> | <a href="https://huggingface.co/datasets/TeleEmbodied/humanoidgen_dataset/tree/main/task_datasets">β Dataset</a> | <a href="https://huggingface.co/TeleEmbodied/humanoidgen_model/tree/main">π€ Models</a> | <a href="https://arxiv.org/abs/2507.00833">π Paper</a> | <a href="https://github.com/TeleHuman/HumanoidGen">π» Code</a>
|
| 12 |
</h5>
|
| 13 |
|
| 14 |
-
This repository contains models trained using data generated by the HumanoidGen framework.
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
# HumanoidGen Framework
|
| 17 |
|
|
@@ -28,5 +31,4 @@ If you find our work helpful, please cite us:
|
|
| 28 |
journal={arXiv preprint arXiv:2507.00833},
|
| 29 |
year={2025}
|
| 30 |
}
|
| 31 |
-
```
|
| 32 |
-
|
|
|
|
| 1 |
---
|
| 2 |
+
pipeline_tag: robotics
|
| 3 |
task_categories:
|
| 4 |
- robotics
|
| 5 |
+
license: cc-by-nc-4.0
|
| 6 |
---
|
| 7 |
|
| 8 |
+
# HumanoidGen-Model
|
| 9 |
+
|
|
|
|
| 10 |
<h5 align="center">
|
| 11 |
<a href="https://openhumanoidgen.github.io/"> π₯ Homepage</a> | <a href="https://huggingface.co/datasets/TeleEmbodied/humanoidgen_dataset/tree/main/task_datasets">β Dataset</a> | <a href="https://huggingface.co/TeleEmbodied/humanoidgen_model/tree/main">π€ Models</a> | <a href="https://arxiv.org/abs/2507.00833">π Paper</a> | <a href="https://github.com/TeleHuman/HumanoidGen">π» Code</a>
|
| 12 |
</h5>
|
| 13 |
|
| 14 |
+
This repository contains models trained using data generated by the HumanoidGen framework, as presented in the paper [HumanoidGen: Data Generation for Bimanual Dexterous Manipulation via LLM Reasoning](https://arxiv.org/abs/2507.00833).
|
| 15 |
+
|
| 16 |
+
## Abstract
|
| 17 |
+
For robotic manipulation, existing robotics datasets and simulation benchmarks predominantly cater to robot-arm platforms. However, for humanoid robots equipped with dual arms and dexterous hands, simulation tasks and high-quality demonstrations are notably lacking. Bimanual dexterous manipulation is inherently more complex, as it requires coordinated arm movements and hand operations, making autonomous data collection challenging. This paper presents HumanoidGen, an automated task creation and demonstration collection framework that leverages atomic dexterous operations and LLM reasoning to generate relational constraints. Specifically, we provide spatial annotations for both assets and dexterous hands based on the atomic operations, and perform an LLM planner to generate a chain of actionable spatial constraints for arm movements based on object affordances and scenes. To further improve planning ability, we employ a variant of Monte Carlo tree search to enhance LLM reasoning for long-horizon tasks and insufficient annotation. In experiments, we create a novel benchmark with augmented scenarios to evaluate the quality of the collected data. The results show that the performance of the 2D and 3D diffusion policies can scale with the generated dataset.
|
| 18 |
|
| 19 |
# HumanoidGen Framework
|
| 20 |
|
|
|
|
| 31 |
journal={arXiv preprint arXiv:2507.00833},
|
| 32 |
year={2025}
|
| 33 |
}
|
| 34 |
+
```
|
|
|