Datasets:

Languages:
English
ArXiv:
License:
danaaubakirova HF Staff commited on
Commit
15456ab
·
verified ·
1 Parent(s): a352715

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -15
README.md CHANGED
@@ -24,7 +24,7 @@ pretty_name: Community Dataset v3
24
 
25
  A large-scale robotics dataset for vision-language-action learning, featuring **791 datasets** across **46 robot types**, enabling cross-embodiment pretraining for generalist robot policies.
26
 
27
- ![Community Dataset v3](./comm_v3.png)
28
 
29
  ## Overview
30
 
@@ -40,7 +40,7 @@ The dataset spans **46+ robot embodiments** including single-arm, bimanual, mobi
40
  | **Total Datasets** | 791 |
41
  | **Total Episodes** | 50,622 |
42
  | **Total Frames** | 25,971,082 |
43
- | **Total Duration** | 240.47 hours (10.02 days) |
44
  | **Contributors** | 235 |
45
  | **Robot Types** | 46 different embodiments |
46
  | **Action Dimensions** | 12 different configurations |
@@ -49,11 +49,11 @@ The dataset spans **46+ robot embodiments** including single-arm, bimanual, mobi
49
  ## 🤖 Robot Type Distribution
50
 
51
  ### By Category
52
- - **Single-arm manipulators**: 72% (571 datasets)
53
- - **Bimanual systems**: 12% (95 datasets)
54
- - **Mobile manipulation**: 8% (63 datasets)
55
- - **Humanoid platforms**: 1% (8 datasets)
56
- - **Other configurations**: 7% (54 datasets)
57
 
58
  ### Top 10 Robot Types
59
 
@@ -70,7 +70,8 @@ The dataset spans **46+ robot embodiments** including single-arm, bimanual, mobi
70
  | **so100_bimanual** | 12 | 1.5% | Bimanual |
71
  | **koch_follower** | 8 | 1.0% | Single-arm |
72
 
73
- ![Screenshot 2025-12-09 at 17.50.51](https://cdn-uploads.huggingface.co/production/uploads/640e21ef3c82bd463ee5a76d/uVr2KrVm2crT7evSFCaEA.png)
 
74
 
75
  ## 🗂️ Dataset Structure
76
 
@@ -160,7 +161,7 @@ accelerate launch --config_file accelerate_configs/multi_gpu.yaml \
160
  --wandb.project="smolvla2-cross-embodiment"
161
  ```
162
 
163
- ## 🔧 Training Challenges with Cross-Embodiment Data
164
 
165
  ### The Reality of Community-Contributed Data
166
 
@@ -170,7 +171,7 @@ This dataset includes 791 datasets recorded by community members under different
170
 
171
  Starting with 851 datasets, we systematically debugged and cleaned the collection. Here's what we found:
172
 
173
- #### Missing Video Files (Primary Removal Reason)
174
  Some datasets had incomplete episode recordings where video files were missing:
175
  ```
176
  ERROR Failed to load video for key 'observation.images.image' at episode X:
@@ -179,7 +180,7 @@ ERROR Failed to load video for key 'observation.images.image' at episode X:
179
  **Impact:** Training crashes when these episodes were sampled
180
  **Action:** Removed ~15-20 datasets with missing files
181
 
182
- #### Data Type Incompatibilities
183
  Certain datasets returned inconsistent data types during batch formation:
184
  ```
185
  RuntimeError: Could not infer dtype of dict
@@ -188,7 +189,7 @@ AttributeError: 'list' object has no attribute 'device'
188
  **Impact:** Random crashes during forward pass
189
  **Action:** Removed ~10-15 problematic datasets, implemented resilient batch collation
190
 
191
- #### Multi-Camera Configuration Issues
192
  Different datasets had varying numbers of camera views, causing tensor shape mismatches:
193
 
194
  **Root cause:** The `max_num_images` parameter wasn't properly propagated in the codebase, leading to inconsistent image tensor shapes when datasets had different numbers of cameras (some had 2, others had 4+ views).
@@ -196,7 +197,7 @@ Different datasets had varying numbers of camera views, causing tensor shape mis
196
  **Impact:** Thousands of dimension/channel erros for the datasets with more than 3 images.
197
  **Action:** Set `config.max_num_images = 3` to standardize input. This number balances multi-view information (essential for spatial reasoning) while being compatible with most datasets in the collection - the majority of community datasets use 2-3 camera views for manipulation tasks.
198
 
199
- #### Video Timing Misalignments
200
  Frame timestamps occasionally violated tolerance thresholds:
201
  ```
202
  Some query timestamps violate tolerance (tensor([2.0667]) > tolerance_s=0.0001)
@@ -204,7 +205,7 @@ Some query timestamps violate tolerance (tensor([2.0667]) > tolerance_s=0.0001)
204
  **Impact:** Minor temporal inconsistency, but training continued
205
  **Action:** Automatic fallback to closest frames
206
 
207
- #### Final Dataset Cleaning Results
208
  - **Original datasets:** 851
209
  - **Datasets with missing files:** ~15-20 (removed)
210
  - **Datasets with data type issues:** ~10-15 (removed)
@@ -239,7 +240,7 @@ This dataset enables:
239
  | **Ryosei2** | 17 | 2.1% |
240
  | **kyomangold** | 16 | 2.0% |
241
  | **psg777** | 16 | 2.0% |
242
- | Others (225) | 521 | 65.9% |
243
 
244
  ## 🤝 Contributing
245
 
 
24
 
25
  A large-scale robotics dataset for vision-language-action learning, featuring **791 datasets** across **46 robot types**, enabling cross-embodiment pretraining for generalist robot policies.
26
 
27
+ ![3](https://cdn-uploads.huggingface.co/production/uploads/640e21ef3c82bd463ee5a76d/5v1NlxUHR_HV0tXYTK0ux.png)
28
 
29
  ## Overview
30
 
 
40
  | **Total Datasets** | 791 |
41
  | **Total Episodes** | 50,622 |
42
  | **Total Frames** | 25,971,082 |
43
+ | **Total Duration** | 251.5 hours (10.5 days) |
44
  | **Contributors** | 235 |
45
  | **Robot Types** | 46 different embodiments |
46
  | **Action Dimensions** | 12 different configurations |
 
49
  ## 🤖 Robot Type Distribution
50
 
51
  ### By Category
52
+ - **Single-arm manipulators**: 88.4% (699 datasets)
53
+ - **Bimanual systems**: 6.7% (53 datasets)
54
+ - **Mobile manipulation**: 3.4% (27 datasets)
55
+ - **Humanoid platforms**: 1.3% (10 datasets)
56
+ - **Other configurations**: 0.3% (2 datasets)
57
 
58
  ### Top 10 Robot Types
59
 
 
70
  | **so100_bimanual** | 12 | 1.5% | Bimanual |
71
  | **koch_follower** | 8 | 1.0% | Single-arm |
72
 
73
+
74
+ ![6](https://cdn-uploads.huggingface.co/production/uploads/640e21ef3c82bd463ee5a76d/Trg81uewHlGHH30NZukK5.png)
75
 
76
  ## 🗂️ Dataset Structure
77
 
 
161
  --wandb.project="smolvla2-cross-embodiment"
162
  ```
163
 
164
+ ## Training Challenges with Cross-Embodiment Data
165
 
166
  ### The Reality of Community-Contributed Data
167
 
 
171
 
172
  Starting with 851 datasets, we systematically debugged and cleaned the collection. Here's what we found:
173
 
174
+ #### 1. Missing Video Files (Primary Removal Reason)
175
  Some datasets had incomplete episode recordings where video files were missing:
176
  ```
177
  ERROR Failed to load video for key 'observation.images.image' at episode X:
 
180
  **Impact:** Training crashes when these episodes were sampled
181
  **Action:** Removed ~15-20 datasets with missing files
182
 
183
+ #### 2. Data Type Incompatibilities
184
  Certain datasets returned inconsistent data types during batch formation:
185
  ```
186
  RuntimeError: Could not infer dtype of dict
 
189
  **Impact:** Random crashes during forward pass
190
  **Action:** Removed ~10-15 problematic datasets, implemented resilient batch collation
191
 
192
+ #### 3. Multi-Camera Configuration Issues
193
  Different datasets had varying numbers of camera views, causing tensor shape mismatches:
194
 
195
  **Root cause:** The `max_num_images` parameter wasn't properly propagated in the codebase, leading to inconsistent image tensor shapes when datasets had different numbers of cameras (some had 2, others had 4+ views).
 
197
  **Impact:** Thousands of dimension/channel erros for the datasets with more than 3 images.
198
  **Action:** Set `config.max_num_images = 3` to standardize input. This number balances multi-view information (essential for spatial reasoning) while being compatible with most datasets in the collection - the majority of community datasets use 2-3 camera views for manipulation tasks.
199
 
200
+ #### 4. Video Timing Misalignments
201
  Frame timestamps occasionally violated tolerance thresholds:
202
  ```
203
  Some query timestamps violate tolerance (tensor([2.0667]) > tolerance_s=0.0001)
 
205
  **Impact:** Minor temporal inconsistency, but training continued
206
  **Action:** Automatic fallback to closest frames
207
 
208
+ ### Final Dataset Cleaning Results
209
  - **Original datasets:** 851
210
  - **Datasets with missing files:** ~15-20 (removed)
211
  - **Datasets with data type issues:** ~10-15 (removed)
 
240
  | **Ryosei2** | 17 | 2.1% |
241
  | **kyomangold** | 16 | 2.0% |
242
  | **psg777** | 16 | 2.0% |
243
+
244
 
245
  ## 🤝 Contributing
246