Datasets:

Languages:
English
ArXiv:
License:
danaaubakirova HF Staff commited on
Commit
0065e52
·
verified ·
1 Parent(s): 7857104

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -29
README.md CHANGED
@@ -46,7 +46,7 @@ The dataset spans **46+ robot embodiments** including single-arm, bimanual, mobi
46
  | **Action Dimensions** | 12 different configurations |
47
  | **Average Hours/Dataset** | 0.30 |
48
 
49
- ## 🤖 Robot Distribution
50
 
51
  ### By Category
52
  - **Single-arm manipulators**: 72% (571 datasets)
@@ -70,16 +70,7 @@ 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
- ## 🎮 Action Space Distribution
74
-
75
- | Action Shape | Datasets | % | Description |
76
- |--------------|----------|---|-------------|
77
- | **(6,)** | 607 | 76.7% | Single-arm + gripper (standard) |
78
- | **(14,)** | 60 | 7.6% | Bimanual robots |
79
- | **(7,)** | 58 | 7.3% | Single-arm extended DoF |
80
- | **(16,)** | 26 | 3.3% | Complex bimanual |
81
- | **(12,)** | 19 | 2.4% | Bimanual + grippers |
82
- | Others (7 shapes) | 21 | 2.7% | Specialized configs |
83
 
84
  ## 🗂️ Dataset Structure
85
 
@@ -103,32 +94,26 @@ community_dataset_v3_clean/
103
 
104
  ## 🚀 Usage
105
 
106
- ### Prerequisites
107
 
108
- Install LeRobot and authenticate:
109
 
110
  ```bash
111
- # Create conda environment
112
- conda create -y -n lerobot python=3.10
113
- conda activate lerobot
114
-
115
- # Install ffmpeg and LeRobot
116
- conda install ffmpeg -c conda-forge
117
- git clone https://github.com/huggingface/lerobot.git
118
- cd lerobot
119
- pip install -e .
120
-
121
- # Authenticate with Hugging Face
122
  huggingface-cli login
123
- # Get your token from https://huggingface.co/settings/tokens
 
 
124
  ```
125
 
 
 
126
  ### Download the Dataset
127
 
128
- ```bash
129
- huggingface-cli download HuggingFaceVLA/community_dataset_v3_clean \
130
- --repo-type=dataset \
131
- --local-dir ./community_dataset_v3_clean
132
  ```
133
 
134
  ### Load Individual Datasets
 
46
  | **Action Dimensions** | 12 different configurations |
47
  | **Average Hours/Dataset** | 0.30 |
48
 
49
+ ## 🤖 Robot Type Distribution
50
 
51
  ### By Category
52
  - **Single-arm manipulators**: 72% (571 datasets)
 
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
 
 
94
 
95
  ## 🚀 Usage
96
 
97
+ **1. Authenticate with Hugging Face**
98
 
99
+ You need to be logged in to access the dataset:
100
 
101
  ```bash
102
+ # Login to Hugging Face
 
 
 
 
 
 
 
 
 
 
103
  huggingface-cli login
104
+
105
+ # Or alternatively, set your token as an environment variable
106
+ # export HF_TOKEN=your_token_here
107
  ```
108
 
109
+ Get your token from [https://huggingface.co/settings/tokens](https://huggingface.co/settings/tokens)
110
+
111
  ### Download the Dataset
112
 
113
+ ```python
114
+ hf download HuggingFaceVLA/community_dataset_v1 \
115
+ --repo-type=dataset \
116
+ --local-dir /path/local_dir/community_dataset_v1
117
  ```
118
 
119
  ### Load Individual Datasets