File size: 1,414 Bytes
da328c9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
license: mit
task_categories:
- robotics
tags:
- LeRobot
- SO-ARM101
pretty_name: SO-ARM101 Pick and Place Dataset
---

# SO-ARM101 Pick and Place Dataset

## Dataset Description

This dataset contains demonstrations of a SO-ARM101 robotic arm performing pick-and-place tasks.

**Task**: Pick up the red square block and place it inside the green square area on the right.

## Dataset Structure

- **Format**: LeRobot v2.1
- **Robot**: SO-ARM101 (6 DOF arm)
- **Total Episodes**: 2
- **Total Frames**: 409
- **FPS**: 30
- **Video Resolution**: 640x480
- **Cameras**: 2 (wrist camera, front camera)

## Features

### Observations
- **State**: 6D joint positions (degrees)
  - shoulder_pan, shoulder_lift, elbow_flex, wrist_flex, wrist_roll, gripper
- **Images**: 
  - Wrist camera (640x480x3)
  - Front camera (640x480x3)

### Actions
- 6D joint position commands (degrees)

## Usage

```python
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset

# Load dataset
dataset = LeRobotDataset("edgarkim/so_arm101_2")

# Access first frame
frame = dataset[0]
print(frame.keys())
```

## Citation

If you use this dataset, please cite:

```bibtex
@dataset{so_arm101_pickplace,
  title = {SO-ARM101 Pick and Place Dataset},
  author = {Edgar Kim},
  year = {2025},
  publisher = {Hugging Face},
  howpublished = {\url{https://huggingface.co/datasets/edgarkim/so_arm101_2}}
}
```

## License

MIT License