File size: 2,547 Bytes
67f118f | 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | ---
license: apache-2.0
task_categories:
- robotics
tags:
- LeRobot
configs:
- config_name: default
data_files:
- split: train
path: data/chunk-000/episode_*.parquet
dataset_info:
features:
- name: timestamp
dtype: float64
- name: frame_index
dtype: int64
- name: episode_index
dtype: int64
- name: index
dtype: int64
- name: task_index
dtype: int64
- name: observation.state
sequence:
dtype: float64
length: 7
- name: observation.velocity
sequence:
dtype: float64
length: 7
- name: observation.effort
sequence:
dtype: float64
length: 7
- name: observation.weight
sequence:
dtype: float64
length: 1
- name: action
sequence:
dtype: float64
length: 7
splits:
- name: train
num_bytes: 16603644
num_examples: 120000
download_size: 16603644
dataset_size: 16603644
---
# FR5 Garlic Manipulation Dataset
This dataset contains demonstrations collected on an FR5 robot teleoperated to manipulate garlic. Each episode pairs synchronized joint trajectories (`observation.state`, `action`) with base and wrist camera videos. The layout follows the LeRobot dataset convention with chunked parquet files and per-camera mp4 streams.
## Dataset Details
- **Total Episodes**: 100
- **Total Frames**: 120,000
- **FPS**: ~30.01 Hz
- **Episode Length**: ~1200 frames per episode
- **Task**: Garlic pick and place manipulation
## Data Structure
Each episode contains:
- **Joint States** (`observation.state`): 7D joint positions (6 arm joints + 1 gripper) in radians
- **Actions** (`action`): 7D target joint positions (6 arm joints + 1 gripper) in radians
- **Additional Observations**: velocity, effort, and weight measurements
- **Videos**: Synchronized base and wrist camera videos (MP4 format)
- **Metadata**: Timestamps, frame indices, episode indices, and task indices
## File Structure
```
demos_garlic_mod/
├── data/
│ └── chunk-000/
│ └── episode_*.parquet
├── videos/
│ └── chunk-000/
│ ├── observation.images.cam_base/
│ │ └── episode_*.mp4
│ ├── observation.images.cam_wrist/
│ │ └── episode_*.mp4
└── meta/
├── info.json
├── episodes.jsonl
├── episodes_stats.jsonl
└── tasks.jsonl
```
## Usage
This dataset is compatible with the LeRobot framework and can be loaded using standard LeRobot data loaders for training imitation learning models.
|