Search is not available for this dataset
video video 48.7 1.01k |
|---|
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
SO-ARM101 Pill Bottle Pick-and-Place Dataset (200 Episodes)
Task: Pick up a white pill bottle (cylinder) and place it inside a black electrical-tape circle.
Prompt (single task): Pick up the white pill bottle and place it inside the black tape circle.
Overview
| Property | Value |
|---|---|
| Robot | SO-ARM101 (6-DoF follower: 5 joints + gripper) |
| Control | Teleoperation (leader arm) |
| Episodes | 200 |
| Total frames | 76,808 |
| FPS | 30 |
| Total duration | ~43 minutes |
| Dataset version | LeRobot v3.0 |
| Codec | AV1 (libsvtav1 / libdav1d), YUV420p |
| Camera resolution | 640 x 480 |
| Split | train = episodes 0-199 |
Data Format
LeRobot v3 dataset layout:
pill_bottle_200/
βββ meta/
β βββ info.json # dataset metadata (features, fps, splits, codec)
β βββ episodes # per-episode metadata (video file + timestamp ranges)
β βββ stats.json # normalization statistics per feature
β βββ tasks.parquet # task strings
βββ data/
β βββ chunk-000/ # parquet files: file-000..file-NNn.parquet
βββ videos/
β βββ observation.images.top/
β β βββ chunk-000/ # AV1 video files
β βββ observation.images.gripper/
β βββ chunk-000/
βββ README.md
Features (info.json)
| Key | Type | Shape | Content |
|---|---|---|---|
observation.images.top |
video (AV1) | 480x640x3 RGB | top-down camera view of workspace |
observation.images.gripper |
video (AV1) | 480x640x3 RGB | gripper-side close-up camera |
observation.state |
float32 | [6] | joint positions (normalized -100..100) |
action |
float32 | [6] | joint target positions (normalized -100..100) |
timestamp |
float32 | [1] | time within episode (s) |
frame_index |
int64 | [1] | global frame index |
episode_index |
int64 | [1] | episode id (0-199) |
index |
int64 | [1] | global row index |
task_index |
int64 | [1] | task id (0) |
Joint order (observation.state / action)
[shoulder_pan, shoulder_lift, elbow_flex, wrist_flex, wrist_roll, gripper]
- Positions are normalized to the calibrated motor range, units span roughly -100..+100 (RANGE_M100_100), gripper uses RANGE_0_100 (open β low, close β higher).
use_degrees = False(normalized range, not radians/degrees).
Recording Setup
- Follower (slave) arm on
/dev/ttyACM1, calibrated idmy_awesome_follower_arm. - Leader (master) arm on
/dev/ttyACM0, calibrated idmy_awesome_leader_arm. - Cameras: top =
/dev/video0, gripper =/dev/video2, both MJPG 640x480 @30fps, RGB. - Every episode starts from the folded home pose:
shoulder_pan β -3.5, shoulder_lift β -98.5, elbow β +98.7, wrist_flex β -98, wrist_roll β -50, gripper β 2 (open). - Object placement (bottle and tape circle) is randomized across the workspace center region per episode.
How to Load
from lerobot.datasets.lerobot_dataset import LeRobotDataset
ds = LeRobotDataset("soarm101/pill_bottle_200")
episode = ds[0] # returns frames with observation.images.*, observation.state, action
Or via CLI after upload:
huggingface-cli download soarm101/pill_bottle_200 --repo-type dataset --local-dir ~/.cache/huggingface/lerobot/soarm101/pill_bottle_200
Notes
- Videos are AV1 encoded. Decoding requires
torchcodecorpyav/libdav1d(OpenCV alone cannot decode AV1). - The
observation.stateandactionvalues are already normalized to the calibrated motor range; usemeta/stats.json(already computed) for the training pipeline's normalization stats.
- Downloads last month
- -