Datasets:

Modalities:
Video
Languages:
English
Size:
< 1K
ArXiv:
Libraries:
Datasets
License:
danaaubakirova HF Staff commited on
Commit
6565a64
·
verified ·
1 Parent(s): 21c0086

Update dataset statistics with accurate folder-based counts (170 datasets, 59 contributors)

Browse files
Files changed (1) hide show
  1. README.md +147 -123
README.md CHANGED
@@ -1,109 +1,129 @@
1
  ---
2
  license: apache-2.0
3
- task_categories:
4
- - robotics
5
- - computer-vision
6
- - reinforcement-learning
7
  tags:
8
  - robotics
9
  - community
10
  - so100
11
  - manipulation
12
- - multi-user
13
- - collection
14
  - smolvla
15
  - lerobot
16
  - vision-language-action
17
- size_categories:
18
- - 100K<n<1M
 
19
  language:
20
  - en
21
- pretty_name: "LeRobot Community Dataset v2"
22
- viewer: false
 
23
  ---
24
 
25
- # LeRobot Community Dataset v2
26
 
27
- A large-scale collection of robotic manipulation datasets contributed by the LeRobot community. This dataset represents the second major release of community-contributed robotics data, featuring high-quality episodic demonstrations across diverse manipulation tasks.
28
 
29
- ## 🤖 Overview
30
 
31
- This dataset is a curated collection of robotics demonstrations from multiple contributors, primarily focused on manipulation tasks using SO-100 robotic arms. The data was collected and processed using the [LeRobot](https://github.com/huggingface/lerobot) framework, ensuring consistency and compatibility across all datasets.
32
 
33
- **Key Features:**
34
- - **Multi-contributor**: Data from 59 different contributors
35
- - **Diverse tasks**: Wide variety of manipulation scenarios and objects
36
- - **Standardized format**: All data in LeRobot v2.0/v2.1 format
37
- - **Quality filtered**: Automated processing and validation pipeline
38
- - **Ready for training**: Compatible with [SmolVLA](https://huggingface.co/blog/smolvla) and other VLA models
39
 
40
  ## 📊 Dataset Statistics
41
 
42
  | Metric | Value |
43
  |--------|-------|
44
- | Total Datasets | 170 |
45
- | Total Episodes | N/A |
46
- | Total Frames | N/A |
47
- | Contributors | 59 |
48
- | Robot Types | SO-100 (various colors) |
49
- | Data Format | LeRobot v2.0 and v2.1 dataset format |
50
- | Total Size | ~5032.889999999998 GB |
51
- | Success Rate | 87% (170/196 from input list) |
52
-
53
- ## 🏗️ Dataset Structure
54
-
55
- The dataset maintains the original contributor-based organization:
 
 
 
 
 
56
 
57
  ```
58
  community_dataset_v2/
59
- ├── user1/
60
- │ ├── dataset1/
61
- │ │ ├── data/
62
- │ │ ├── meta/
63
- │ │ └── videos/
64
- │ └── dataset2/
65
- ├── data/
66
- ├── meta/
67
- │ └── videos/
68
- ├── user2/
69
- │ └── dataset3/
70
  └── ...
71
  ```
72
 
73
- Each individual dataset follows the standard LeRobot format with:
74
- - `data/`: Contains the episode data (observations, actions, rewards)
75
- - `meta/`: Metadata files including episode information
76
- - `videos/`: MP4 video files for visual observations
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
 
78
- ## 🔧 Prerequisites
79
 
80
- Before using this dataset, install LeRobot and authenticate with Hugging Face:
 
 
81
 
82
- ### Install LeRobot
83
  ```bash
84
- # Install conda if not available
85
- # conda install -c conda-forge ffmpeg # Required for video processing
 
 
 
 
86
 
87
- # Install LeRobot from source
88
  git clone https://github.com/huggingface/lerobot.git
89
  cd lerobot
 
 
90
  pip install -e .
91
  ```
92
 
93
- ### Authenticate with Hugging Face
 
 
 
94
  ```bash
 
95
  huggingface-cli login
 
 
 
96
  ```
97
 
98
- ## 📥 Usage
99
 
100
  ### Download the Dataset
101
 
102
  ```python
103
  from huggingface_hub import snapshot_download
104
 
105
- # Download the entire dataset (requires authentication)
106
- local_dir = snapshot_download(
107
  repo_id="HuggingFaceVLA/community_dataset_v2",
108
  repo_type="dataset",
109
  local_dir="./community_dataset_v2"
@@ -116,95 +136,99 @@ local_dir = snapshot_download(
116
  from lerobot.datasets.lerobot_dataset import LeRobotDataset
117
  import os
118
 
119
- # List all available datasets
120
- dataset_root = "./community_dataset_v2"
121
- for user_name in os.listdir(dataset_root):
122
- user_path = os.path.join(dataset_root, user_name)
123
- if os.path.isdir(user_path):
124
- for dataset_name in os.listdir(user_path):
125
- dataset_path = os.path.join(user_path, dataset_name)
126
- if os.path.isdir(dataset_path):
127
- print(f"{user_name}/{dataset_name}")
128
-
129
- # Load a specific dataset
130
- dataset = LeRobotDataset("./community_dataset_v2/user_name/dataset_name")
131
-
132
- # Access episodes
133
- for episode_idx in range(len(dataset.episode_indices)):
134
- episode = dataset[episode_idx]
135
- # Process episode data...
136
  ```
137
 
138
- ### Integration with SmolVLA (COMING SOON)
139
 
140
  ```python
141
- # Example usage with SmolVLA - needs testing
142
- from transformers import AutoProcessor, AutoModelForVision2Seq
143
 
144
- processor = AutoProcessor.from_pretrained("HuggingFaceTB/SmolVLM-Instruct")
145
- model = AutoModelForVision2Seq.from_pretrained("HuggingFaceTB/SmolVLM-Instruct")
 
 
146
 
147
- # Process robotics episodes for VLA training
148
- # Implementation details coming soon...
149
  ```
150
 
151
- ## 📋 Data Collection
152
 
153
- The data was primarily collected using [LeRobot](https://github.com/huggingface/lerobot) software with SO-100 robotic arms, ensuring consistency in data format and quality across contributors. The collection process involved:
154
 
155
- 1. **Community Contribution**: Multiple researchers and practitioners contributed datasets
156
- 2. **Standardization**: All data converted to LeRobot standard format
157
- 3. **Quality Control**: Automated validation and filtering pipeline
158
- 4. **Processing**: Consistent preprocessing and format normalization
 
159
 
160
- ## 🔄 Processing Pipeline
 
 
 
161
 
162
- This dataset was processed using an automated pipeline that:
163
- - Validates dataset format compatibility
164
- - Removes corrupted or incomplete episodes
165
- - Standardizes video formats and resolutions
166
- - ✅ Generates comprehensive metadata
167
- - ✅ Ensures LeRobot v2.0/v2.1 compatibility
168
 
169
- **Processing Results:**
170
- - Input datasets: 196
171
- - Successfully processed: 170
172
- - Success rate: 87%
173
- - Failed datasets: 26 (mainly due to format incompatibility)
174
 
175
- ## 🤝 Contributing
176
 
177
- This dataset represents community contributions. If you'd like to contribute additional datasets:
 
 
 
 
178
 
179
- 1. Ensure your data follows the [LeRobot dataset format](https://github.com/huggingface/lerobot)
180
- 2. Contact the maintainers for inclusion in future releases
181
- 3. Follow the quality guidelines and formatting standards
182
 
183
- ## 📚 Related Work
 
 
 
 
184
 
185
- - [SmolVLA Model](https://huggingface.co/HuggingFaceTB/SmolVLM-Instruct) - Vision-Language-Action model
186
- - [SmolVLA Blog Post](https://huggingface.co/blog/smolvla) - Detailed overview and applications
187
- - [SmolVLA Paper](https://arxiv.org/abs/2501.00403) - Technical details and benchmarks
188
- - [LeRobot Datasets Blog](https://huggingface.co/blog/lerobot-datasets) - Overview of robotics datasets
189
 
190
- ## 📄 License
191
 
192
- This dataset is released under the Apache 2.0 license. Please cite appropriately if used in research.
193
 
194
- ## 🔗 Citation
 
 
 
 
195
 
196
- If you use this dataset in your research, please cite:
197
 
198
- ```bibtex
199
- @dataset{community_dataset_v2,
200
- title={LeRobot Community Dataset v2},
201
- author={LeRobot Community},
202
- year={2024},
203
- publisher={Hugging Face},
204
- url={https://huggingface.co/datasets/HuggingFaceVLA/community_dataset_v2}
205
- }
206
- ```
207
 
 
 
 
 
 
 
208
  ---
209
 
210
- Built with ❤️ by the SmolVLA team and LeRobot Community
 
1
  ---
2
  license: apache-2.0
 
 
 
 
3
  tags:
4
  - robotics
5
  - community
6
  - so100
7
  - manipulation
 
 
8
  - smolvla
9
  - lerobot
10
  - vision-language-action
11
+ - embodied-ai
12
+ task_categories:
13
+ - robotics
14
  language:
15
  - en
16
+ size_categories:
17
+ - 100K<n<1M
18
+ pretty_name: Community Dataset v2
19
  ---
20
 
21
+ # Community Dataset v2
22
 
23
+ A large-scale community-contributed robotics dataset for vision-language-action learning, featuring **170 datasets** from **59 contributors** worldwide.
24
 
25
+ This dataset represents the second major release of community-contributed robotics data, expanding upon the success of Community Dataset v1. The data was collected and processed using the [LeRobot](https://github.com/huggingface/lerobot) framework with automated processing and validation pipelines to ensure high quality and compatibility.
26
 
27
+ ## 🌟 Overview
28
 
29
+ This dataset represents a collaborative effort from the robotics and AI community to build comprehensive training data for embodied AI systems. Each contribution contains demonstrations of robotic manipulation tasks with the SO100 arm, recorded using [LeRobot tools](https://github.com/huggingface/lerobot), primarily focused on tabletop scenarios and everyday object interactions.
 
 
 
 
 
30
 
31
  ## 📊 Dataset Statistics
32
 
33
  | Metric | Value |
34
  |--------|-------|
35
+ | **Total Datasets** | 170 |
36
+ | **Total Episodes** | 6,325 |
37
+ | **Total Frames** | 5,033,418 |
38
+ | **Total Videos** | 12,650 |
39
+ | **Contributors** | 59 |
40
+ | **Weighted Average FPS** | 30.0 |
41
+ | **Average Episodes per Dataset** | 38.1 |
42
+ | **Total Duration** | 46.6 hours |
43
+ | **Average Hours per Dataset** | 0.28 |
44
+ | **Primary Tasks** | Manipulation, Pick & Place, Sorting |
45
+ | **Robot Types** | SO-100 (various colors) |
46
+ | **Data Format** | LeRobot v2.0 and v2.1 dataset format |
47
+ | **Total Size** | 59 GB |
48
+
49
+ ## 🗂️ Structure
50
+
51
+ The dataset maintains a clear hierarchical structure:
52
 
53
  ```
54
  community_dataset_v2/
55
+ ├── contributor1/
56
+ │ ├── dataset_name_1/
57
+ │ │ ├── data/ # Parquet files with observations
58
+ │ │ ├── videos/ # MP4 recordings
59
+ │ │ └── meta/ # Metadata and info
60
+ │ └── dataset_name_2/
61
+ ├── contributor2/
62
+ └── dataset_name_3/
 
 
 
63
  └── ...
64
  ```
65
 
66
+ Each dataset follows the LeRobot format standard, ensuring compatibility with existing frameworks and easy integration.
67
+
68
+ ## 🏆 Top Contributors
69
+
70
+ | Contributor | Datasets Quantity |
71
+ |-------------|----------|
72
+ | kantine | 26 |
73
+ | duthvik | 17 |
74
+ | abokinala | 9 |
75
+ | danaaubakirova | 8 |
76
+ | roboticshack | 7 |
77
+ | 1g0rrr | 6 |
78
+ | sihyun77 | 6 |
79
+ | Congying1112 | 5 |
80
+ | sixpigs1 | 5 |
81
+ | nguyen-v | 4 |
82
+
83
+ ## 🚀 Usage
84
 
85
+ ### Prerequisites
86
 
87
+ **1. Install LeRobot**
88
+
89
+ Follow the [official LeRobot installation guide](https://huggingface.co/docs/lerobot/installation):
90
 
 
91
  ```bash
92
+ # Create conda environment with Python 3.10
93
+ conda create -y -n lerobot python=3.10
94
+ conda activate lerobot
95
+
96
+ # Install ffmpeg (required for video processing)
97
+ conda install ffmpeg -c conda-forge
98
 
 
99
  git clone https://github.com/huggingface/lerobot.git
100
  cd lerobot
101
+
102
+ # Install LeRobot from Source
103
  pip install -e .
104
  ```
105
 
106
+ **2. Authenticate with Hugging Face**
107
+
108
+ You need to be logged in to access the dataset:
109
+
110
  ```bash
111
+ # Login to Hugging Face
112
  huggingface-cli login
113
+
114
+ # Or alternatively, set your token as an environment variable
115
+ # export HF_TOKEN=your_token_here
116
  ```
117
 
118
+ Get your token from [https://huggingface.co/settings/tokens](https://huggingface.co/settings/tokens)
119
 
120
  ### Download the Dataset
121
 
122
  ```python
123
  from huggingface_hub import snapshot_download
124
 
125
+ # Download entire collection (requires authentication)
126
+ dataset_path = snapshot_download(
127
  repo_id="HuggingFaceVLA/community_dataset_v2",
128
  repo_type="dataset",
129
  local_dir="./community_dataset_v2"
 
136
  from lerobot.datasets.lerobot_dataset import LeRobotDataset
137
  import os
138
 
139
+ # Browse available datasets
140
+ for contributor in os.listdir("./community_dataset_v2"):
141
+ contributor_path = f"./community_dataset_v2/{contributor}"
142
+ if os.path.isdir(contributor_path):
143
+ for dataset in os.listdir(contributor_path):
144
+ print(f"📁 {contributor}/{dataset}")
145
+
146
+ # Load a specific dataset (requires authentication)
147
+ dataset = LeRobotDataset(
148
+ repo_id="local",
149
+ root="./community_dataset_v2/contributor_name/dataset_name"
150
+ )
151
+
152
+ # Access episodes and observations
153
+ print(f"Episodes: {len(dataset.episode_indices)}")
154
+ print(f"Total frames: {len(dataset)}")
 
155
  ```
156
 
157
+ ### Integration with SmolVLA
158
 
159
  ```python
 
 
160
 
161
+ COMING SOON
162
+ # This dataset is designed for training VLA models
163
+ # Compatible with SmolVLA training pipelines
164
+ # needs testing
165
 
 
 
166
  ```
167
 
168
+ ## 🔧 Dataset Format
169
 
170
+ Each dataset contains:
171
 
172
+ - **`data/`**: Parquet files with timestamped observations
173
+ - Robot states (joint positions, velocities)
174
+ - Action sequences
175
+ - Camera observations (multiple views)
176
+ - Language instructions
177
 
178
+ - **`videos/`**: Synchronized video recordings
179
+ - Multiple camera angles
180
+ - High-resolution capture
181
+ - Timestamp alignment
182
 
183
+ - **`meta/`**: Metadata and configuration
184
+ - Dataset info (fps, episode count)
185
+ - Robot configuration
186
+ - Task descriptions
 
 
187
 
188
+ ## 🎯 Intended Use
 
 
 
 
189
 
190
+ This dataset is designed for:
191
 
192
+ - **Vision-Language-Action (VLA) model training**
193
+ - **Robotic manipulation research**
194
+ - **Imitation learning experiments**
195
+ - **Multi-task policy development**
196
+ - **Embodied AI research**
197
 
198
+ ## 📈 Revisions
 
 
199
 
200
+ - **v2.0**: Expanded community collection
201
+ - 170 datasets from 59 contributors
202
+ - Standardized LeRobot v2.0/v2.1 format
203
+ - Advanced quality filtering and validation
204
+ - Comprehensive automated processing pipeline
205
 
206
+ ## 🤝 Community Contributions
 
 
 
207
 
208
+ This dataset exists thanks to the generous contributions from researchers, hobbyists, and institutions worldwide. Each dataset represents hours of careful data collection and curation.
209
 
210
+ ### Contributing Guidelines
211
 
212
+ Future contributions should follow:
213
+ - LeRobot dataset format
214
+ - Consistent naming conventions for the features, camera views etc.
215
+ - Quality validation checks
216
+ - Proper task descriptions, describing the actions precisely.
217
 
218
+ Check the [blogpost](https://huggingface.co/blog/lerobot-datasets) for more information
219
 
220
+ ## 📄 License
221
+
222
+ Released under Apache 2.0 license. Individual datasets may have additional attribution requirements - please check contributor documentation.
223
+
224
+ ## 🔗 Related Work
 
 
 
 
225
 
226
+ - [LeRobot Framework](https://github.com/huggingface/lerobot)
227
+ - [SmolVLA model](https://huggingface.co/lerobot/smolvla_base)
228
+ - [SmolVLA Blogpost](https://huggingface.co/blog/smolvla)
229
+ - [SmolVLA Paper](https://huggingface.co/papers/2506.01844)
230
+ - [Docs](https://huggingface.co/docs/lerobot/smolvla)
231
+ - [How to Build a successful Robotics dataset with Lerobot?](https://huggingface.co/blog/lerobot-datasets)
232
  ---
233
 
234
+ *Built with ❤️ by the SmolVLA team and LeRobot Community*