Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,29 +1,53 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
dtype: int64
|
| 14 |
-
- name: frame_index
|
| 15 |
-
dtype: int64
|
| 16 |
-
- name: timestamp
|
| 17 |
-
dtype: float32
|
| 18 |
-
splits:
|
| 19 |
-
- name: train
|
| 20 |
-
num_bytes: 114163839
|
| 21 |
-
num_examples: 3000
|
| 22 |
-
download_size: 113753737
|
| 23 |
-
dataset_size: 114163839
|
| 24 |
-
configs:
|
| 25 |
-
- config_name: default
|
| 26 |
-
data_files:
|
| 27 |
-
- split: train
|
| 28 |
-
path: data/train-*
|
| 29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
tags:
|
| 3 |
+
- lerobot
|
| 4 |
+
- robotics
|
| 5 |
+
- aloha
|
| 6 |
+
- simulation
|
| 7 |
+
- gym_aloha
|
| 8 |
+
- transfer_cube
|
| 9 |
+
task_categories:
|
| 10 |
+
- robotics
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1K<n<10K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
+
|
| 15 |
+
# ALOHA Simulation Dataset - Transfer Cube
|
| 16 |
+
|
| 17 |
+
This dataset was collected from the gym_aloha simulation environment.
|
| 18 |
+
|
| 19 |
+
## Dataset Description
|
| 20 |
+
|
| 21 |
+
- **Environment**: gym_aloha/AlohaTransferCube-v0
|
| 22 |
+
- **Task**: Transfer cube from one location to another
|
| 23 |
+
- **Episodes**: 10
|
| 24 |
+
- **FPS**: 50
|
| 25 |
+
- **Total Frames**: 3000
|
| 26 |
+
|
| 27 |
+
## Features
|
| 28 |
+
|
| 29 |
+
- `observation.image`: RGB image from top camera (480x640x3)
|
| 30 |
+
- `observation.state`: Robot joint positions (14 dimensions)
|
| 31 |
+
- `action`: Robot actions (14 dimensions)
|
| 32 |
+
- `episode_index`: Episode number
|
| 33 |
+
- `frame_index`: Frame number within episode
|
| 34 |
+
- `timestamp`: Time in seconds
|
| 35 |
+
|
| 36 |
+
## Robot Configuration
|
| 37 |
+
|
| 38 |
+
The ALOHA robot has 14 degrees of freedom:
|
| 39 |
+
- Left arm: 6 joints + 1 gripper
|
| 40 |
+
- Right arm: 6 joints + 1 gripper
|
| 41 |
+
|
| 42 |
+
## Usage
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
from datasets import load_dataset
|
| 46 |
+
|
| 47 |
+
dataset = load_dataset("nock0912/aloha_sim_cube_dataset")
|
| 48 |
+
print(dataset)
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
## Citation
|
| 52 |
+
|
| 53 |
+
If you use this dataset, please cite the LeRobot project.
|