ganatrask commited on
Commit
d9d2a1d
·
verified ·
1 Parent(s): 7aac36a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +250 -0
README.md ADDED
@@ -0,0 +1,250 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - robotics
5
+ language:
6
+ - en
7
+ tags:
8
+ - robotics
9
+ - manipulation
10
+ - lerobot
11
+ - humanoid
12
+ - reachy2
13
+ - pick-and-place
14
+ - simulation
15
+ - mujoco
16
+ - gr00t
17
+ - nvidia
18
+ - physical-ai
19
+ size_categories:
20
+ - n<1K
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: train
25
+ path: "data/**/*.parquet"
26
+ ---
27
+
28
+ # NOVA Dataset - Reachy 2 Pick-and-Place Demonstrations
29
+
30
+ <p align="center">
31
+ <img src="https://img.shields.io/badge/Format-LeRobot%20v2.1-FFD21E?style=for-the-badge&logo=huggingface" alt="LeRobot v2.1"/>
32
+ <img src="https://img.shields.io/badge/Episodes-100-blue?style=for-the-badge" alt="100 Episodes"/>
33
+ <img src="https://img.shields.io/badge/Robot-Reachy%202-0066CC?style=for-the-badge" alt="Reachy 2"/>
34
+ </p>
35
+
36
+ Expert demonstration dataset for training vision-language-action models on [Pollen Robotics' Reachy 2](https://www.pollen-robotics.com/reachy/) humanoid robot. Collected in MuJoCo simulation with domain randomization.
37
+
38
+ ## Dataset Description
39
+
40
+ This dataset contains **100 episodes** of pick-and-place manipulation tasks, designed for fine-tuning NVIDIA GR00T N1.6 or other imitation learning policies.
41
+
42
+ ### Key Features
43
+
44
+ | Feature | Description |
45
+ |---------|-------------|
46
+ | **Format** | LeRobot v2.1 (parquet + H264 video) |
47
+ | **Episodes** | 100 |
48
+ | **Task Variations** | 32 (4 objects × 8 colors) |
49
+ | **Camera Views** | 2 (front_cam, workspace_cam) |
50
+ | **Resolution** | 640×480 @ 15 FPS |
51
+ | **Domain Randomization** | Position, lighting, camera jitter |
52
+
53
+ ### Task Description
54
+
55
+ The robot performs pick-and-place tasks with natural language instructions:
56
+ - "Pick up the red cube and place it in the box"
57
+ - "Pick up the blue cylinder and place it in the box"
58
+ - "Pick up the green capsule and place it in the box"
59
+
60
+ ## Dataset Structure
61
+
62
+ ```
63
+ NOVA/
64
+ ├── meta/
65
+ │ ├── info.json # Dataset metadata
66
+ │ ├── stats.json # Normalization statistics
67
+ │ ├── tasks.jsonl # Task descriptions
68
+ │ └── episodes.jsonl # Episode information
69
+ ├── data/
70
+ │ └── chunk-000/
71
+ │ ├── episode_000000.parquet
72
+ │ ├── episode_000001.parquet
73
+ │ └── ...
74
+ └── videos/
75
+ └── chunk-000/
76
+ ├── observation.images.front_cam/
77
+ │ ├── episode_000000.mp4
78
+ │ └── ...
79
+ └── observation.images.workspace_cam/
80
+ ├── episode_000000.mp4
81
+ └── ...
82
+ ```
83
+
84
+ ## Data Fields
85
+
86
+ ### State (Proprioception)
87
+
88
+ | Field | Dimension | Description |
89
+ |-------|-----------|-------------|
90
+ | `observation.state` | 7 | Joint positions (arm) |
91
+
92
+ **Joint Names:**
93
+ 1. `shoulder_pitch` (-180° to 90°)
94
+ 2. `shoulder_roll` (-180° to 10°)
95
+ 3. `elbow_yaw` (-90° to 90°)
96
+ 4. `elbow_pitch` (-125° to 0°)
97
+ 5. `wrist_roll` (-100° to 100°)
98
+ 6. `wrist_pitch` (-45° to 45°)
99
+ 7. `wrist_yaw` (-30° to 30°)
100
+
101
+ ### Action
102
+
103
+ | Field | Dimension | Description |
104
+ |-------|-----------|-------------|
105
+ | `action` | 8 | Joint positions (7 arm + 1 gripper) |
106
+
107
+ **Gripper:** 0 = closed, 1 = open
108
+
109
+ ### Video
110
+
111
+ | Camera | Resolution | FOV | Format |
112
+ |--------|------------|-----|--------|
113
+ | `front_cam` | 640×480 | 108° | H264 MP4 |
114
+ | `workspace_cam` | 640×480 | 70° | H264 MP4 |
115
+
116
+ ### Language
117
+
118
+ | Field | Description |
119
+ |-------|-------------|
120
+ | `annotation.human.task_description` | Natural language task instruction |
121
+
122
+ ## Objects and Colors
123
+
124
+ ### Objects (4 types)
125
+ - **Cube** (4cm)
126
+ - **Rectangular box**
127
+ - **Cylinder**
128
+ - **Capsule**
129
+
130
+ ### Colors (8 variations)
131
+ - Red, Green, Blue, Yellow
132
+ - Cyan, Magenta, Orange, Purple
133
+
134
+ ## Domain Randomization
135
+
136
+ | Parameter | Range |
137
+ |-----------|-------|
138
+ | Object position | Workspace-aware random |
139
+ | Lighting intensity | 0.5 - 1.0 |
140
+ | Camera jitter | ±2° |
141
+ | Object type | Random selection |
142
+ | Object color | Random selection |
143
+
144
+ ## Usage
145
+
146
+ ### Loading with LeRobot
147
+
148
+ ```python
149
+ from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
150
+
151
+ dataset = LeRobotDataset("ganatrask/NOVA")
152
+
153
+ # Access an episode
154
+ episode = dataset[0]
155
+ print(episode.keys())
156
+ # ['observation.state', 'observation.images.front_cam', 'action', ...]
157
+ ```
158
+
159
+ ### Loading with HuggingFace Datasets
160
+
161
+ ```python
162
+ from datasets import load_dataset
163
+
164
+ dataset = load_dataset("ganatrask/NOVA")
165
+ ```
166
+
167
+ ### Training GR00T
168
+
169
+ ```bash
170
+ python -m gr00t.train \
171
+ --dataset_repo_id ganatrask/NOVA \
172
+ --embodiment_tag reachy2 \
173
+ --video_backend decord \
174
+ --num_gpus 2 \
175
+ --batch_size 64 \
176
+ --max_steps 30000
177
+ ```
178
+
179
+ ## Collection Details
180
+
181
+ ### Environment
182
+
183
+ - **Simulator**: MuJoCo via [reachy2_mujoco](https://github.com/pollen-robotics/reachy2_mujoco)
184
+ - **Robot**: Reachy 2 humanoid (14-DOF arms, using right arm only)
185
+ - **Control Frequency**: 15 Hz
186
+
187
+ ### Collection Process
188
+
189
+ 1. Random object and color selection
190
+ 2. Random placement within workspace
191
+ 3. Scripted expert policy execution
192
+ 4. Recording of observations, states, and actions
193
+ 5. Automatic episode segmentation
194
+
195
+ ### Collection Command
196
+
197
+ ```bash
198
+ python scripts/data_collector.py \
199
+ --episodes 100 \
200
+ --output reachy2_dataset \
201
+ --arm right \
202
+ --randomize-object \
203
+ --randomize-color \
204
+ --cameras front_cam workspace_cam
205
+ ```
206
+
207
+ ## Statistics
208
+
209
+ | Statistic | Value |
210
+ |-----------|-------|
211
+ | Total episodes | 100 |
212
+ | Avg. episode length | ~150 steps |
213
+ | Collection rate | ~2 episodes/min |
214
+ | Total size | ~2 GB |
215
+
216
+ ## Limitations
217
+
218
+ - **Simulation only**: Data collected in MuJoCo, not real robot
219
+ - **Single arm**: Right arm manipulation only
220
+ - **Fixed task type**: Pick-and-place only
221
+ - **Limited objects**: 4 primitive shapes
222
+
223
+ ## License
224
+
225
+ This dataset is released under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/).
226
+
227
+ ## Citation
228
+
229
+ ```bibtex
230
+ @misc{nova_dataset_2025,
231
+ title={NOVA Dataset: Reachy 2 Pick-and-Place Demonstrations},
232
+ author={ganatrask},
233
+ year={2025},
234
+ publisher={HuggingFace},
235
+ url={https://huggingface.co/datasets/ganatrask/NOVA}
236
+ }
237
+ ```
238
+
239
+ ## Acknowledgments
240
+
241
+ - **[Pollen Robotics](https://www.pollen-robotics.com/)** - Reachy 2 robot and MuJoCo simulation
242
+ - **[HuggingFace](https://huggingface.co/)** - LeRobot framework and dataset hosting
243
+ - **[DeepMind](https://mujoco.org/)** - MuJoCo physics engine
244
+
245
+ ## Related Resources
246
+
247
+ - **Model**: [ganatrask/NOVA](https://huggingface.co/ganatrask/NOVA) - Fine-tuned GR00T model
248
+ - **Code**: [ganatrask/NOVA](https://github.com/ganatrask/NOVA) - Training and inference code
249
+ - **Base Model**: [nvidia/GR00T-N1.6-3B](https://huggingface.co/nvidia/GR00T-N1.6-3B)
250
+ - **LeRobot**: [huggingface/lerobot](https://github.com/huggingface/lerobot)