Update dataset statistics with accurate folder-based counts (170 datasets, 59 contributors)
Browse files
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 |
-
|
18 |
-
|
|
|
19 |
language:
|
20 |
- en
|
21 |
-
|
22 |
-
|
|
|
23 |
---
|
24 |
|
25 |
-
#
|
26 |
|
27 |
-
A large-scale
|
28 |
|
29 |
-
|
30 |
|
31 |
-
|
32 |
|
33 |
-
|
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 |
|
46 |
-
| Total Frames |
|
47 |
-
|
|
48 |
-
|
|
49 |
-
|
|
50 |
-
|
|
51 |
-
|
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
```
|
58 |
community_dataset_v2/
|
59 |
-
├──
|
60 |
-
│ ├──
|
61 |
-
│ │ ├── data/
|
62 |
-
│ │ ├──
|
63 |
-
│ │ └──
|
64 |
-
│ └──
|
65 |
-
|
66 |
-
│
|
67 |
-
│ └── videos/
|
68 |
-
├── user2/
|
69 |
-
│ └── dataset3/
|
70 |
└── ...
|
71 |
```
|
72 |
|
73 |
-
Each
|
74 |
-
|
75 |
-
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
-
|
79 |
|
80 |
-
|
|
|
|
|
81 |
|
82 |
-
### Install LeRobot
|
83 |
```bash
|
84 |
-
#
|
85 |
-
|
|
|
|
|
|
|
|
|
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 |
-
|
|
|
|
|
|
|
94 |
```bash
|
|
|
95 |
huggingface-cli login
|
|
|
|
|
|
|
96 |
```
|
97 |
|
98 |
-
|
99 |
|
100 |
### Download the Dataset
|
101 |
|
102 |
```python
|
103 |
from huggingface_hub import snapshot_download
|
104 |
|
105 |
-
# Download
|
106 |
-
|
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 |
-
#
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
# Access episodes
|
133 |
-
|
134 |
-
|
135 |
-
# Process episode data...
|
136 |
```
|
137 |
|
138 |
-
### Integration with SmolVLA
|
139 |
|
140 |
```python
|
141 |
-
# Example usage with SmolVLA - needs testing
|
142 |
-
from transformers import AutoProcessor, AutoModelForVision2Seq
|
143 |
|
144 |
-
|
145 |
-
|
|
|
|
|
146 |
|
147 |
-
# Process robotics episodes for VLA training
|
148 |
-
# Implementation details coming soon...
|
149 |
```
|
150 |
|
151 |
-
##
|
152 |
|
153 |
-
|
154 |
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
|
|
159 |
|
160 |
-
|
|
|
|
|
|
|
161 |
|
162 |
-
|
163 |
-
-
|
164 |
-
-
|
165 |
-
-
|
166 |
-
- ✅ Generates comprehensive metadata
|
167 |
-
- ✅ Ensures LeRobot v2.0/v2.1 compatibility
|
168 |
|
169 |
-
|
170 |
-
- Input datasets: 196
|
171 |
-
- Successfully processed: 170
|
172 |
-
- Success rate: 87%
|
173 |
-
- Failed datasets: 26 (mainly due to format incompatibility)
|
174 |
|
175 |
-
|
176 |
|
177 |
-
|
|
|
|
|
|
|
|
|
178 |
|
179 |
-
|
180 |
-
2. Contact the maintainers for inclusion in future releases
|
181 |
-
3. Follow the quality guidelines and formatting standards
|
182 |
|
183 |
-
|
|
|
|
|
|
|
|
|
184 |
|
185 |
-
|
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 |
-
|
191 |
|
192 |
-
|
193 |
|
194 |
-
|
|
|
|
|
|
|
|
|
195 |
|
196 |
-
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
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*
|