Add files using upload-large-folder tool
Browse files
.gitattributes
CHANGED
|
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
fastumi_test/1.0.0/fastumi_test-train.tfrecord-00000-of-00001 filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# fastumi_test
|
| 2 |
+
|
| 3 |
+
## Description
|
| 4 |
+
FastUMI Pro robot manipulation dataset in RLDS format.
|
| 5 |
+
|
| 6 |
+
**Task**: pick up the object
|
| 7 |
+
|
| 8 |
+
## Dataset Info
|
| 9 |
+
- **Format**: RLDS (Reinforcement Learning Datasets)
|
| 10 |
+
- **Total Episodes**: 12
|
| 11 |
+
- **Total Steps**: 6692
|
| 12 |
+
- **FPS**: 30
|
| 13 |
+
- **Robot Type**: fastumi_pro
|
| 14 |
+
- **Action Type**: absolute
|
| 15 |
+
- **Image Encoding**: JPEG
|
| 16 |
+
- **Image Shape**: (1080, 1920, 3)
|
| 17 |
+
|
| 18 |
+
## Features
|
| 19 |
+
|
| 20 |
+
### Observation
|
| 21 |
+
| Feature | Shape | Description |
|
| 22 |
+
|---------|-------|-------------|
|
| 23 |
+
| `observation/image` | (1080, 1920, 3) | RGB camera image |
|
| 24 |
+
| `observation/state` | (7,) | End-effector pose: [x, y, z, roll, pitch, yaw, gripper] |
|
| 25 |
+
|
| 26 |
+
### Action
|
| 27 |
+
| Feature | Shape | Description |
|
| 28 |
+
|---------|-------|-------------|
|
| 29 |
+
| `action` | (7,) | Target pose (next state) |
|
| 30 |
+
|
| 31 |
+
### Standard RLDS Fields
|
| 32 |
+
| Feature | Type | Description |
|
| 33 |
+
|---------|------|-------------|
|
| 34 |
+
| `reward` | float | 1.0 at episode end, 0.0 otherwise |
|
| 35 |
+
| `discount` | float | 0.0 at episode end, 1.0 otherwise |
|
| 36 |
+
| `is_first` | bool | True for first step |
|
| 37 |
+
| `is_last` | bool | True for last step |
|
| 38 |
+
| `is_terminal` | bool | False (demonstrations are successful) |
|
| 39 |
+
| `language_instruction` | string | Task description |
|
| 40 |
+
|
| 41 |
+
## Loading the Dataset
|
| 42 |
+
|
| 43 |
+
```python
|
| 44 |
+
import tensorflow as tf
|
| 45 |
+
|
| 46 |
+
# Load TFRecords
|
| 47 |
+
dataset = tf.data.TFRecordDataset([
|
| 48 |
+
'fastumi_test/1.0.0/fastumi_test-train.tfrecord-00000-of-00001'
|
| 49 |
+
])
|
| 50 |
+
|
| 51 |
+
# Parse function
|
| 52 |
+
def parse_episode(serialized):
|
| 53 |
+
features = {
|
| 54 |
+
'episode_id': tf.io.FixedLenFeature([], tf.string),
|
| 55 |
+
'num_steps': tf.io.FixedLenFeature([], tf.int64),
|
| 56 |
+
'steps/observation/image': tf.io.VarLenFeature(tf.string),
|
| 57 |
+
'steps/observation/state': tf.io.VarLenFeature(tf.float32),
|
| 58 |
+
'steps/action': tf.io.VarLenFeature(tf.float32),
|
| 59 |
+
'steps/reward': tf.io.VarLenFeature(tf.float32),
|
| 60 |
+
'steps/is_first': tf.io.VarLenFeature(tf.int64),
|
| 61 |
+
'steps/is_last': tf.io.VarLenFeature(tf.int64),
|
| 62 |
+
'steps/language_instruction': tf.io.VarLenFeature(tf.string),
|
| 63 |
+
}
|
| 64 |
+
return tf.io.parse_single_example(serialized, features)
|
| 65 |
+
|
| 66 |
+
dataset = dataset.map(parse_episode)
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
## Data Source Mapping
|
| 70 |
+
|
| 71 |
+
### Source Files (per session)
|
| 72 |
+
```
|
| 73 |
+
session_YYYYMMDD_HHMMSS/
|
| 74 |
+
├── SLAM_Poses/
|
| 75 |
+
│ └── slam_raw_baseframe.txt -> observation/state, action
|
| 76 |
+
├── RGB_Images/
|
| 77 |
+
│ ├── video.mp4 -> observation/image
|
| 78 |
+
│ └── timestamps.csv -> temporal alignment
|
| 79 |
+
└── Clamp_Data/
|
| 80 |
+
└── clamp_data_tum.txt (gripper data included in SLAM file)
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
## Citation
|
| 84 |
+
|
| 85 |
+
If you use this dataset, please cite:
|
| 86 |
+
|
| 87 |
+
```bibtex
|
| 88 |
+
@misc{fastumi_rlds,
|
| 89 |
+
title={FastUMI Pro RLDS Dataset},
|
| 90 |
+
year={2024},
|
| 91 |
+
}
|
| 92 |
+
```
|
fastumi_test/1.0.0/dataset_info.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "fastumi_test",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "FastUMI Pro robot manipulation dataset. Task: pick up the object",
|
| 5 |
+
"robot_type": "fastumi_pro",
|
| 6 |
+
"fps": 30,
|
| 7 |
+
"total_episodes": 12,
|
| 8 |
+
"total_steps": 6692,
|
| 9 |
+
"splits": {
|
| 10 |
+
"train": {
|
| 11 |
+
"num_examples": 12,
|
| 12 |
+
"num_bytes": -1
|
| 13 |
+
}
|
| 14 |
+
},
|
| 15 |
+
"citation": "",
|
| 16 |
+
"homepage": "",
|
| 17 |
+
"license": "MIT"
|
| 18 |
+
}
|
fastumi_test/1.0.0/fastumi_test-train.tfrecord-00000-of-00001
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e53deacb585ec2d0ec7fbc55709de0ce00fac68d874026785d0d1762dd163fd9
|
| 3 |
+
size 1933312950
|
fastumi_test/1.0.0/features.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"episode_id": {
|
| 3 |
+
"dtype": "string",
|
| 4 |
+
"shape": []
|
| 5 |
+
},
|
| 6 |
+
"num_steps": {
|
| 7 |
+
"dtype": "int64",
|
| 8 |
+
"shape": []
|
| 9 |
+
},
|
| 10 |
+
"steps": {
|
| 11 |
+
"observation": {
|
| 12 |
+
"image": {
|
| 13 |
+
"dtype": "uint8",
|
| 14 |
+
"shape": [
|
| 15 |
+
1080,
|
| 16 |
+
1920,
|
| 17 |
+
3
|
| 18 |
+
],
|
| 19 |
+
"encoding": "JPEG"
|
| 20 |
+
},
|
| 21 |
+
"state": {
|
| 22 |
+
"dtype": "float32",
|
| 23 |
+
"shape": [
|
| 24 |
+
7
|
| 25 |
+
],
|
| 26 |
+
"description": "End-effector pose: [x, y, z, roll, pitch, yaw, gripper]"
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"action": {
|
| 30 |
+
"dtype": "float32",
|
| 31 |
+
"shape": [
|
| 32 |
+
7
|
| 33 |
+
],
|
| 34 |
+
"description": "Target pose: [x, y, z, roll, pitch, yaw, gripper]"
|
| 35 |
+
},
|
| 36 |
+
"reward": {
|
| 37 |
+
"dtype": "float32",
|
| 38 |
+
"shape": []
|
| 39 |
+
},
|
| 40 |
+
"discount": {
|
| 41 |
+
"dtype": "float32",
|
| 42 |
+
"shape": []
|
| 43 |
+
},
|
| 44 |
+
"is_first": {
|
| 45 |
+
"dtype": "bool",
|
| 46 |
+
"shape": []
|
| 47 |
+
},
|
| 48 |
+
"is_last": {
|
| 49 |
+
"dtype": "bool",
|
| 50 |
+
"shape": []
|
| 51 |
+
},
|
| 52 |
+
"is_terminal": {
|
| 53 |
+
"dtype": "bool",
|
| 54 |
+
"shape": []
|
| 55 |
+
},
|
| 56 |
+
"language_instruction": {
|
| 57 |
+
"dtype": "string",
|
| 58 |
+
"shape": []
|
| 59 |
+
}
|
| 60 |
+
}
|
| 61 |
+
}
|