nielsr HF Staff commited on
Commit
14ff126
·
verified ·
1 Parent(s): c605285

Add robotics task category and paper metadata

Browse files

Hi! I'm Niels from the community science team at Hugging Face.

This pull request improves the dataset card by:
- Adding the `robotics` task category to the metadata for better discoverability.
- Adding the `arxiv` ID to link the dataset to its research paper.
- Adding links to the official project page, paper, and code repository in the header.
- Formatting the citation as a BibTeX block.

Files changed (1) hide show
  1. README.md +12 -15
README.md CHANGED
@@ -1,17 +1,21 @@
1
  ---
2
  license: cdla-permissive-2.0
 
 
 
3
  tags:
4
  - humanoid
5
- - robotics
6
  - motion-tracking
7
  - teleoperation
8
  - reinforcement-learning
9
  - motion-retargeting
10
- pretty_name: MOSAIC Dataset
11
  ---
12
 
13
  # MOSAIC Dataset
14
 
 
 
15
  This repository releases the built-in **MOSAIC** multi-source motion dataset in the following paper:
16
 
17
  **[MOSAIC: Bridging the Sim-to-Real Gap in Generalist Humanoid Motion Tracking and Teleoperation with Rapid Residual Adaptation](https://arxiv.org/abs/2602.08594)**
@@ -105,7 +109,7 @@ MOSAIC_Dataset/
105
  ## How to Download
106
 
107
  ### Option A: Download the whole dataset (recommended)
108
- ```
109
  from huggingface_hub import snapshot_download
110
 
111
  local_dir = snapshot_download(
@@ -117,7 +121,7 @@ MOSAIC_Dataset/
117
 
118
  ### Option B: Download a subset (recommended for large datasets)
119
  Example: only download prompts and one subset folder.
120
- ```
121
  from huggingface_hub import snapshot_download
122
 
123
  local_dir = snapshot_download(
@@ -134,11 +138,10 @@ Example: only download prompts and one subset folder.
134
  print("Downloaded to:", local_dir)
135
  ```
136
  ### Option C: CLI download
137
- ```
138
  huggingface-cli download BAAI-Humanoid/MOSAIC_Dataset \
139
  --repo-type dataset \
140
  --local-dir MOSAIC_Dataset
141
-
142
  ```
143
 
144
  ---
@@ -156,14 +159,13 @@ Tip: If you only want to inspect a few sequences quickly, download a small subse
156
 
157
  ## Citation
158
  If you use this dataset, please cite our paper:
159
- ```
160
- @article{sun2026mosaic,
161
  title = {MOSAIC: Bridging the Sim-to-Real Gap in Generalist Humanoid Motion Tracking and Teleoperation with Rapid Residual Adaptation},
162
  author = {Zhenguo Sun and Bo-Sheng Huang and Yibo Peng and Xukun Li and Jingyu Ma and Yu Sun and Zhe Li and Haojun Jiang and Biao Gao and Zhenshan Bing and Xinlong Wang and Alois Knoll},
163
  journal = {arXiv preprint arXiv:2602.08594},
164
  year = {2026}
165
  }
166
-
167
  ```
168
 
169
  ---
@@ -177,17 +179,12 @@ This dataset is released under CDLA-Permissive-2.0.
177
 
178
  ## Acknowledgements / References
179
  - [AMASS](https://amass.is.tue.mpg.de/)
180
-
181
  - [GMR retargeting](https://github.com/YanjieZe/GMR)
182
-
183
  - [BeyondMimic](https://github.com/HybridRobotics/whole_body_tracking)
184
-
185
  - [GENMO](https://github.com/NVlabs/GENMO)
186
-
187
  - [IO-AI mocap tools](https://github.com/ioai-tech/io_dev_tools_ros2/tree/master/io_mocap)
188
 
189
-
190
  ---
191
 
192
  ## Contact / Issues
193
- Please open an issue in the relevant code repository or reach out via your project contact channels if you find problems with the dataset structure, conversion scripts, or visualization.
 
1
  ---
2
  license: cdla-permissive-2.0
3
+ pretty_name: MOSAIC Dataset
4
+ task_categories:
5
+ - robotics
6
  tags:
7
  - humanoid
 
8
  - motion-tracking
9
  - teleoperation
10
  - reinforcement-learning
11
  - motion-retargeting
12
+ arxiv: 2602.08594
13
  ---
14
 
15
  # MOSAIC Dataset
16
 
17
+ [**Project Page**](https://baai-humanoid.github.io/MOSAIC/) | [**Paper**](https://arxiv.org/abs/2602.08594) | [**Code**](https://github.com/BAAI-Humanoid/MOSAIC)
18
+
19
  This repository releases the built-in **MOSAIC** multi-source motion dataset in the following paper:
20
 
21
  **[MOSAIC: Bridging the Sim-to-Real Gap in Generalist Humanoid Motion Tracking and Teleoperation with Rapid Residual Adaptation](https://arxiv.org/abs/2602.08594)**
 
109
  ## How to Download
110
 
111
  ### Option A: Download the whole dataset (recommended)
112
+ ```python
113
  from huggingface_hub import snapshot_download
114
 
115
  local_dir = snapshot_download(
 
121
 
122
  ### Option B: Download a subset (recommended for large datasets)
123
  Example: only download prompts and one subset folder.
124
+ ```python
125
  from huggingface_hub import snapshot_download
126
 
127
  local_dir = snapshot_download(
 
138
  print("Downloaded to:", local_dir)
139
  ```
140
  ### Option C: CLI download
141
+ ```bash
142
  huggingface-cli download BAAI-Humanoid/MOSAIC_Dataset \
143
  --repo-type dataset \
144
  --local-dir MOSAIC_Dataset
 
145
  ```
146
 
147
  ---
 
159
 
160
  ## Citation
161
  If you use this dataset, please cite our paper:
162
+ ```bibtex
163
+ @article{sun2026mosaic,
164
  title = {MOSAIC: Bridging the Sim-to-Real Gap in Generalist Humanoid Motion Tracking and Teleoperation with Rapid Residual Adaptation},
165
  author = {Zhenguo Sun and Bo-Sheng Huang and Yibo Peng and Xukun Li and Jingyu Ma and Yu Sun and Zhe Li and Haojun Jiang and Biao Gao and Zhenshan Bing and Xinlong Wang and Alois Knoll},
166
  journal = {arXiv preprint arXiv:2602.08594},
167
  year = {2026}
168
  }
 
169
  ```
170
 
171
  ---
 
179
 
180
  ## Acknowledgements / References
181
  - [AMASS](https://amass.is.tue.mpg.de/)
 
182
  - [GMR retargeting](https://github.com/YanjieZe/GMR)
 
183
  - [BeyondMimic](https://github.com/HybridRobotics/whole_body_tracking)
 
184
  - [GENMO](https://github.com/NVlabs/GENMO)
 
185
  - [IO-AI mocap tools](https://github.com/ioai-tech/io_dev_tools_ros2/tree/master/io_mocap)
186
 
 
187
  ---
188
 
189
  ## Contact / Issues
190
+ Please open an issue in the relevant code repository or reach out via your project contact channels if you find problems with the dataset structure, conversion scripts, or visualization.