Datasets:
Add TsFile (data/), README, and meta (info.json adjusted for tsfile)
Browse files- README.md +102 -0
- data/vacuame_train4.tsfile +0 -0
- meta/episodes.jsonl +2 -0
- meta/info.json +161 -0
- meta/stats.json +280 -0
- meta/tasks.jsonl +1 -0
README.md
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pretty_name: "Vacuame/train4 (LeRobot SO-100) — TsFile"
|
| 6 |
+
tags:
|
| 7 |
+
- time-series
|
| 8 |
+
- tsfile
|
| 9 |
+
- robotics
|
| 10 |
+
- lerobot
|
| 11 |
+
- so100
|
| 12 |
+
- manipulation
|
| 13 |
+
task_categories:
|
| 14 |
+
- time-series-forecasting
|
| 15 |
+
- robotics
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Vacuame/train4 (LeRobot SO-100) — TsFile
|
| 19 |
+
|
| 20 |
+
This dataset converts the numeric time-series of the HuggingFace LeRobot dataset
|
| 21 |
+
[`Vacuame/train4`](https://huggingface.co/datasets/Vacuame/train4)
|
| 22 |
+
**losslessly to the [Apache TsFile](https://tsfile.apache.org/) format**, and keeps
|
| 23 |
+
the original camera videos alongside.
|
| 24 |
+
|
| 25 |
+
## Original dataset
|
| 26 |
+
|
| 27 |
+
- **Source dataset**: [Vacuame/train4](https://huggingface.co/datasets/Vacuame/train4)
|
| 28 |
+
- **Format**: LeRobot v2.0 (robot_type = `so100`)
|
| 29 |
+
- **Content**: a small SO-100 robot-arm manipulation dataset — **119 frames /
|
| 30 |
+
2 episodes / 30 fps**, 1 task ("try"), with two RGB camera streams
|
| 31 |
+
(`laptop`, `phone`).
|
| 32 |
+
|
| 33 |
+
## What is in this repository
|
| 34 |
+
|
| 35 |
+
```
|
| 36 |
+
data/
|
| 37 |
+
└── vacuame_train4.tsfile # numeric time-series (converted)
|
| 38 |
+
videos/
|
| 39 |
+
└── chunk-000/
|
| 40 |
+
├── observation.images.laptop/episode_0000{00,01}.mp4 # copied verbatim
|
| 41 |
+
└── observation.images.phone/episode_0000{00,01}.mp4 # copied verbatim
|
| 42 |
+
meta/
|
| 43 |
+
├── info.json # original LeRobot info + tsfile_conversion notes
|
| 44 |
+
├── tasks.jsonl # copied verbatim
|
| 45 |
+
├── episodes.jsonl # copied verbatim
|
| 46 |
+
└── stats.json # copied verbatim
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
## TsFile storage mapping (table model)
|
| 50 |
+
|
| 51 |
+
| Role | Column(s) | Type | Notes |
|
| 52 |
+
|------|-----------|------|-------|
|
| 53 |
+
| **TAG** | `episode_id` | STRING | `episode_{episode_index}`, 2 devices (one per episode) |
|
| 54 |
+
| **Time** | `round(frame_index * 1000 / 30)` ms | INT64 (ms) | 30 fps; frame_index restarts at 0 each episode |
|
| 55 |
+
| **FIELD** | `state_0` … `state_5` | FLOAT | `observation.state[6]` expanded |
|
| 56 |
+
| **FIELD** | `action_0` … `action_5` | FLOAT | `action[6]` expanded |
|
| 57 |
+
| **FIELD** | `episode_index`, `frame_index`, `sample_index`, `task_index` | INT64 | indices (`index` → `sample_index`) |
|
| 58 |
+
| **FIELD** | `episode_timestamp_s` | FLOAT | (`timestamp`) |
|
| 59 |
+
|
| 60 |
+
## Conversion notes
|
| 61 |
+
|
| 62 |
+
- **Only the numeric time-series is converted**. The `observation.images.*` features
|
| 63 |
+
are videos in LeRobot — their pixels live in the MP4 files under `videos/`, which
|
| 64 |
+
are kept verbatim here.
|
| 65 |
+
- **TAG = `episode_id`** (2 devices). **Time = `round(frame_index × 1000/30)` ms**.
|
| 66 |
+
Because `frame_index` restarts at 0 within each episode and is strictly increasing,
|
| 67 |
+
every device's time axis is strictly increasing — no de-duplication or offset needed.
|
| 68 |
+
- **Array columns expanded**: `observation.state[6]` → `state_0..state_5`,
|
| 69 |
+
`action[6]` → `action_0..action_5` (FLOAT, matching the source float32).
|
| 70 |
+
- **Column names** with dots are made TsFile-safe (`next.*` etc.).
|
| 71 |
+
- **No columns dropped, no rows dropped**: all 119 frames preserved (episode 0: 87,
|
| 72 |
+
episode 1: 32). The source data is one parquet per episode; they are merged on read.
|
| 73 |
+
|
| 74 |
+
## Usage
|
| 75 |
+
|
| 76 |
+
```python
|
| 77 |
+
from tsfile import TsFileReader
|
| 78 |
+
|
| 79 |
+
reader = TsFileReader("data/vacuame_train4.tsfile")
|
| 80 |
+
schemas = reader.get_all_table_schemas()
|
| 81 |
+
tname = next(iter(schemas))
|
| 82 |
+
|
| 83 |
+
cols = ["episode_id", "state_0", "action_0", "task_index"]
|
| 84 |
+
with reader.query_table(tname, cols, batch_size=65536) as rs:
|
| 85 |
+
while (batch := rs.read_arrow_batch()) is not None:
|
| 86 |
+
df = batch.to_pandas()
|
| 87 |
+
# ... process ...
|
| 88 |
+
reader.close()
|
| 89 |
+
```
|
| 90 |
+
|
| 91 |
+
## Citation
|
| 92 |
+
|
| 93 |
+
```bibtex
|
| 94 |
+
@misc{vacuame_train4,
|
| 95 |
+
title = {train4 (LeRobot SO-100)},
|
| 96 |
+
author = {Vacuame},
|
| 97 |
+
url = {https://huggingface.co/datasets/Vacuame/train4},
|
| 98 |
+
publisher = {Hugging Face}
|
| 99 |
+
}
|
| 100 |
+
```
|
| 101 |
+
|
| 102 |
+
The source HuggingFace dataset does not declare an explicit license.
|
data/vacuame_train4.tsfile
ADDED
|
Binary file (4.83 kB). View file
|
|
|
meta/episodes.jsonl
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"episode_index": 0, "tasks": ["try"], "length": 87}
|
| 2 |
+
{"episode_index": 1, "tasks": ["try"], "length": 32}
|
meta/info.json
ADDED
|
@@ -0,0 +1,161 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"codebase_version": "v2.0",
|
| 3 |
+
"robot_type": "so100",
|
| 4 |
+
"total_episodes": 2,
|
| 5 |
+
"total_frames": 119,
|
| 6 |
+
"total_tasks": 1,
|
| 7 |
+
"total_videos": 4,
|
| 8 |
+
"total_chunks": 1,
|
| 9 |
+
"chunks_size": 1000,
|
| 10 |
+
"fps": 30,
|
| 11 |
+
"splits": {
|
| 12 |
+
"train": "0:2"
|
| 13 |
+
},
|
| 14 |
+
"data_path": "data/vacuame_train4.tsfile",
|
| 15 |
+
"video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
|
| 16 |
+
"features": {
|
| 17 |
+
"action": {
|
| 18 |
+
"dtype": "float32",
|
| 19 |
+
"shape": [
|
| 20 |
+
6
|
| 21 |
+
],
|
| 22 |
+
"names": [
|
| 23 |
+
"main_shoulder_pan",
|
| 24 |
+
"main_shoulder_lift",
|
| 25 |
+
"main_elbow_flex",
|
| 26 |
+
"main_wrist_flex",
|
| 27 |
+
"main_wrist_roll",
|
| 28 |
+
"main_gripper"
|
| 29 |
+
]
|
| 30 |
+
},
|
| 31 |
+
"observation.state": {
|
| 32 |
+
"dtype": "float32",
|
| 33 |
+
"shape": [
|
| 34 |
+
6
|
| 35 |
+
],
|
| 36 |
+
"names": [
|
| 37 |
+
"main_shoulder_pan",
|
| 38 |
+
"main_shoulder_lift",
|
| 39 |
+
"main_elbow_flex",
|
| 40 |
+
"main_wrist_flex",
|
| 41 |
+
"main_wrist_roll",
|
| 42 |
+
"main_gripper"
|
| 43 |
+
]
|
| 44 |
+
},
|
| 45 |
+
"observation.images.laptop": {
|
| 46 |
+
"dtype": "video",
|
| 47 |
+
"shape": [
|
| 48 |
+
480,
|
| 49 |
+
640,
|
| 50 |
+
3
|
| 51 |
+
],
|
| 52 |
+
"names": [
|
| 53 |
+
"height",
|
| 54 |
+
"width",
|
| 55 |
+
"channels"
|
| 56 |
+
],
|
| 57 |
+
"info": {
|
| 58 |
+
"video.fps": 30.0,
|
| 59 |
+
"video.height": 480,
|
| 60 |
+
"video.width": 640,
|
| 61 |
+
"video.channels": 3,
|
| 62 |
+
"video.codec": "av1",
|
| 63 |
+
"video.pix_fmt": "yuv420p",
|
| 64 |
+
"video.is_depth_map": false,
|
| 65 |
+
"has_audio": false
|
| 66 |
+
}
|
| 67 |
+
},
|
| 68 |
+
"observation.images.phone": {
|
| 69 |
+
"dtype": "video",
|
| 70 |
+
"shape": [
|
| 71 |
+
480,
|
| 72 |
+
640,
|
| 73 |
+
3
|
| 74 |
+
],
|
| 75 |
+
"names": [
|
| 76 |
+
"height",
|
| 77 |
+
"width",
|
| 78 |
+
"channels"
|
| 79 |
+
],
|
| 80 |
+
"info": {
|
| 81 |
+
"video.fps": 30.0,
|
| 82 |
+
"video.height": 480,
|
| 83 |
+
"video.width": 640,
|
| 84 |
+
"video.channels": 3,
|
| 85 |
+
"video.codec": "av1",
|
| 86 |
+
"video.pix_fmt": "yuv420p",
|
| 87 |
+
"video.is_depth_map": false,
|
| 88 |
+
"has_audio": false
|
| 89 |
+
}
|
| 90 |
+
},
|
| 91 |
+
"timestamp": {
|
| 92 |
+
"dtype": "float32",
|
| 93 |
+
"shape": [
|
| 94 |
+
1
|
| 95 |
+
],
|
| 96 |
+
"names": null
|
| 97 |
+
},
|
| 98 |
+
"frame_index": {
|
| 99 |
+
"dtype": "int64",
|
| 100 |
+
"shape": [
|
| 101 |
+
1
|
| 102 |
+
],
|
| 103 |
+
"names": null
|
| 104 |
+
},
|
| 105 |
+
"episode_index": {
|
| 106 |
+
"dtype": "int64",
|
| 107 |
+
"shape": [
|
| 108 |
+
1
|
| 109 |
+
],
|
| 110 |
+
"names": null
|
| 111 |
+
},
|
| 112 |
+
"index": {
|
| 113 |
+
"dtype": "int64",
|
| 114 |
+
"shape": [
|
| 115 |
+
1
|
| 116 |
+
],
|
| 117 |
+
"names": null
|
| 118 |
+
},
|
| 119 |
+
"task_index": {
|
| 120 |
+
"dtype": "int64",
|
| 121 |
+
"shape": [
|
| 122 |
+
1
|
| 123 |
+
],
|
| 124 |
+
"names": null
|
| 125 |
+
}
|
| 126 |
+
},
|
| 127 |
+
"tsfile_conversion": {
|
| 128 |
+
"data_format": "tsfile",
|
| 129 |
+
"note": "data/ converted from the original LeRobot parquet (one-per-episode, merged) to a single Apache TsFile. Videos kept verbatim under videos/.",
|
| 130 |
+
"tsfile_table_name": "vacuame_train4",
|
| 131 |
+
"time_column": "Time",
|
| 132 |
+
"time_unit": "ms",
|
| 133 |
+
"time_definition": "round(frame_index * 1000/30) ms (30 fps); frame_index restarts per episode",
|
| 134 |
+
"tag_columns": [
|
| 135 |
+
"episode_id"
|
| 136 |
+
],
|
| 137 |
+
"tag_definition": "episode_id = \"episode_{episode_index}\", one device per episode",
|
| 138 |
+
"column_mapping": {
|
| 139 |
+
"observation.state[6]": [
|
| 140 |
+
"state_0",
|
| 141 |
+
"state_1",
|
| 142 |
+
"state_2",
|
| 143 |
+
"state_3",
|
| 144 |
+
"state_4",
|
| 145 |
+
"state_5"
|
| 146 |
+
],
|
| 147 |
+
"action[6]": [
|
| 148 |
+
"action_0",
|
| 149 |
+
"action_1",
|
| 150 |
+
"action_2",
|
| 151 |
+
"action_3",
|
| 152 |
+
"action_4",
|
| 153 |
+
"action_5"
|
| 154 |
+
],
|
| 155 |
+
"timestamp": "episode_timestamp_s",
|
| 156 |
+
"index": "sample_index",
|
| 157 |
+
"observation.images.laptop": "kept as video under videos/ (not in tsfile)",
|
| 158 |
+
"observation.images.phone": "kept as video under videos/ (not in tsfile)"
|
| 159 |
+
}
|
| 160 |
+
}
|
| 161 |
+
}
|
meta/stats.json
ADDED
|
@@ -0,0 +1,280 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"action": {
|
| 3 |
+
"mean": [
|
| 4 |
+
1.142578125,
|
| 5 |
+
189.84375,
|
| 6 |
+
25.83984375,
|
| 7 |
+
81.9140625,
|
| 8 |
+
-87.451171875,
|
| 9 |
+
5.042016983032227
|
| 10 |
+
],
|
| 11 |
+
"std": [
|
| 12 |
+
0.0,
|
| 13 |
+
0.0,
|
| 14 |
+
0.0,
|
| 15 |
+
0.0,
|
| 16 |
+
0.0,
|
| 17 |
+
0.0
|
| 18 |
+
],
|
| 19 |
+
"max": [
|
| 20 |
+
1.142578125,
|
| 21 |
+
189.84375,
|
| 22 |
+
25.83984375,
|
| 23 |
+
81.9140625,
|
| 24 |
+
-87.451171875,
|
| 25 |
+
5.042016983032227
|
| 26 |
+
],
|
| 27 |
+
"min": [
|
| 28 |
+
1.142578125,
|
| 29 |
+
189.84375,
|
| 30 |
+
25.83984375,
|
| 31 |
+
81.9140625,
|
| 32 |
+
-87.451171875,
|
| 33 |
+
5.042016983032227
|
| 34 |
+
]
|
| 35 |
+
},
|
| 36 |
+
"observation.state": {
|
| 37 |
+
"mean": [
|
| 38 |
+
0.703125,
|
| 39 |
+
187.470703125,
|
| 40 |
+
24.609375,
|
| 41 |
+
80.595703125,
|
| 42 |
+
-87.36328125,
|
| 43 |
+
4.279476165771484
|
| 44 |
+
],
|
| 45 |
+
"std": [
|
| 46 |
+
0.0,
|
| 47 |
+
0.0,
|
| 48 |
+
0.0,
|
| 49 |
+
0.0,
|
| 50 |
+
0.0,
|
| 51 |
+
0.0
|
| 52 |
+
],
|
| 53 |
+
"max": [
|
| 54 |
+
0.703125,
|
| 55 |
+
187.470703125,
|
| 56 |
+
24.609375,
|
| 57 |
+
80.595703125,
|
| 58 |
+
-87.36328125,
|
| 59 |
+
4.279476165771484
|
| 60 |
+
],
|
| 61 |
+
"min": [
|
| 62 |
+
0.703125,
|
| 63 |
+
187.470703125,
|
| 64 |
+
24.609375,
|
| 65 |
+
80.595703125,
|
| 66 |
+
-87.36328125,
|
| 67 |
+
4.279476165771484
|
| 68 |
+
]
|
| 69 |
+
},
|
| 70 |
+
"observation.images.laptop": {
|
| 71 |
+
"mean": [
|
| 72 |
+
[
|
| 73 |
+
[
|
| 74 |
+
0.43435415625572205
|
| 75 |
+
]
|
| 76 |
+
],
|
| 77 |
+
[
|
| 78 |
+
[
|
| 79 |
+
0.4575921595096588
|
| 80 |
+
]
|
| 81 |
+
],
|
| 82 |
+
[
|
| 83 |
+
[
|
| 84 |
+
0.4308394193649292
|
| 85 |
+
]
|
| 86 |
+
]
|
| 87 |
+
],
|
| 88 |
+
"std": [
|
| 89 |
+
[
|
| 90 |
+
[
|
| 91 |
+
0.18254318833351135
|
| 92 |
+
]
|
| 93 |
+
],
|
| 94 |
+
[
|
| 95 |
+
[
|
| 96 |
+
0.20156392455101013
|
| 97 |
+
]
|
| 98 |
+
],
|
| 99 |
+
[
|
| 100 |
+
[
|
| 101 |
+
0.21207940578460693
|
| 102 |
+
]
|
| 103 |
+
]
|
| 104 |
+
],
|
| 105 |
+
"max": [
|
| 106 |
+
[
|
| 107 |
+
[
|
| 108 |
+
1.0
|
| 109 |
+
]
|
| 110 |
+
],
|
| 111 |
+
[
|
| 112 |
+
[
|
| 113 |
+
1.0
|
| 114 |
+
]
|
| 115 |
+
],
|
| 116 |
+
[
|
| 117 |
+
[
|
| 118 |
+
1.0
|
| 119 |
+
]
|
| 120 |
+
]
|
| 121 |
+
],
|
| 122 |
+
"min": [
|
| 123 |
+
[
|
| 124 |
+
[
|
| 125 |
+
0.0
|
| 126 |
+
]
|
| 127 |
+
],
|
| 128 |
+
[
|
| 129 |
+
[
|
| 130 |
+
0.0
|
| 131 |
+
]
|
| 132 |
+
],
|
| 133 |
+
[
|
| 134 |
+
[
|
| 135 |
+
0.0
|
| 136 |
+
]
|
| 137 |
+
]
|
| 138 |
+
]
|
| 139 |
+
},
|
| 140 |
+
"observation.images.phone": {
|
| 141 |
+
"mean": [
|
| 142 |
+
[
|
| 143 |
+
[
|
| 144 |
+
0.5452911853790283
|
| 145 |
+
]
|
| 146 |
+
],
|
| 147 |
+
[
|
| 148 |
+
[
|
| 149 |
+
0.5389545559883118
|
| 150 |
+
]
|
| 151 |
+
],
|
| 152 |
+
[
|
| 153 |
+
[
|
| 154 |
+
0.5279120802879333
|
| 155 |
+
]
|
| 156 |
+
]
|
| 157 |
+
],
|
| 158 |
+
"std": [
|
| 159 |
+
[
|
| 160 |
+
[
|
| 161 |
+
0.11881870776414871
|
| 162 |
+
]
|
| 163 |
+
],
|
| 164 |
+
[
|
| 165 |
+
[
|
| 166 |
+
0.13223744928836823
|
| 167 |
+
]
|
| 168 |
+
],
|
| 169 |
+
[
|
| 170 |
+
[
|
| 171 |
+
0.14324598014354706
|
| 172 |
+
]
|
| 173 |
+
]
|
| 174 |
+
],
|
| 175 |
+
"max": [
|
| 176 |
+
[
|
| 177 |
+
[
|
| 178 |
+
0.8705882430076599
|
| 179 |
+
]
|
| 180 |
+
],
|
| 181 |
+
[
|
| 182 |
+
[
|
| 183 |
+
0.7333333492279053
|
| 184 |
+
]
|
| 185 |
+
],
|
| 186 |
+
[
|
| 187 |
+
[
|
| 188 |
+
0.729411780834198
|
| 189 |
+
]
|
| 190 |
+
]
|
| 191 |
+
],
|
| 192 |
+
"min": [
|
| 193 |
+
[
|
| 194 |
+
[
|
| 195 |
+
0.0
|
| 196 |
+
]
|
| 197 |
+
],
|
| 198 |
+
[
|
| 199 |
+
[
|
| 200 |
+
0.0
|
| 201 |
+
]
|
| 202 |
+
],
|
| 203 |
+
[
|
| 204 |
+
[
|
| 205 |
+
0.0
|
| 206 |
+
]
|
| 207 |
+
]
|
| 208 |
+
]
|
| 209 |
+
},
|
| 210 |
+
"timestamp": {
|
| 211 |
+
"mean": [
|
| 212 |
+
1.1868348121643066
|
| 213 |
+
],
|
| 214 |
+
"std": [
|
| 215 |
+
0.8384349942207336
|
| 216 |
+
],
|
| 217 |
+
"max": [
|
| 218 |
+
2.866666555404663
|
| 219 |
+
],
|
| 220 |
+
"min": [
|
| 221 |
+
0.0
|
| 222 |
+
]
|
| 223 |
+
},
|
| 224 |
+
"frame_index": {
|
| 225 |
+
"mean": [
|
| 226 |
+
35.605045318603516
|
| 227 |
+
],
|
| 228 |
+
"std": [
|
| 229 |
+
25.153051376342773
|
| 230 |
+
],
|
| 231 |
+
"max": [
|
| 232 |
+
86.0
|
| 233 |
+
],
|
| 234 |
+
"min": [
|
| 235 |
+
0.0
|
| 236 |
+
]
|
| 237 |
+
},
|
| 238 |
+
"episode_index": {
|
| 239 |
+
"mean": [
|
| 240 |
+
0.2689075469970703
|
| 241 |
+
],
|
| 242 |
+
"std": [
|
| 243 |
+
0.4433917999267578
|
| 244 |
+
],
|
| 245 |
+
"max": [
|
| 246 |
+
1.0
|
| 247 |
+
],
|
| 248 |
+
"min": [
|
| 249 |
+
0.0
|
| 250 |
+
]
|
| 251 |
+
},
|
| 252 |
+
"index": {
|
| 253 |
+
"mean": [
|
| 254 |
+
59.0
|
| 255 |
+
],
|
| 256 |
+
"std": [
|
| 257 |
+
34.35112762451172
|
| 258 |
+
],
|
| 259 |
+
"max": [
|
| 260 |
+
118.0
|
| 261 |
+
],
|
| 262 |
+
"min": [
|
| 263 |
+
0.0
|
| 264 |
+
]
|
| 265 |
+
},
|
| 266 |
+
"task_index": {
|
| 267 |
+
"mean": [
|
| 268 |
+
0.0
|
| 269 |
+
],
|
| 270 |
+
"std": [
|
| 271 |
+
0.0
|
| 272 |
+
],
|
| 273 |
+
"max": [
|
| 274 |
+
0.0
|
| 275 |
+
],
|
| 276 |
+
"min": [
|
| 277 |
+
0.0
|
| 278 |
+
]
|
| 279 |
+
}
|
| 280 |
+
}
|
meta/tasks.jsonl
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"task_index": 0, "task": "try"}
|