Datasets:
Add TsFile (converted from rerun/v30_apple_storage)
Browse files- .gitattributes +1 -0
- README.md +73 -0
- data/v30_apple_storage.tsfile +3 -0
- meta/episodes/chunk-000/file-000.parquet +3 -0
- meta/info.json +420 -0
- meta/stats.json +338 -0
- meta/tasks.parquet +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
data/v30_apple_storage.tsfile filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,76 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- tsfile
|
| 7 |
+
- timeseries
|
| 8 |
+
- time-series
|
| 9 |
+
- LeRobot
|
| 10 |
+
- robotics
|
| 11 |
+
pretty_name: v30_apple_storage (TsFile)
|
| 12 |
+
size_categories:
|
| 13 |
+
- n<1K
|
| 14 |
+
configs:
|
| 15 |
+
- config_name: default
|
| 16 |
+
data_files:
|
| 17 |
+
- split: train
|
| 18 |
+
path: data/v30_apple_storage.tsfile
|
| 19 |
---
|
| 20 |
+
|
| 21 |
+
# v30_apple_storage (TsFile)
|
| 22 |
+
|
| 23 |
+
Apache TsFile version of [`rerun/v30_apple_storage`](https://huggingface.co/datasets/rerun/v30_apple_storage).
|
| 24 |
+
|
| 25 |
+
## Overview
|
| 26 |
+
|
| 27 |
+
A [LeRobot](https://github.com/huggingface/lerobot) (v3.0) robot-manipulation
|
| 28 |
+
dataset collected on a `reachy2` robot. Each episode records the robot placing an
|
| 29 |
+
apple in a plate — the commanded action and the measured state, sampled frame by
|
| 30 |
+
frame.
|
| 31 |
+
|
| 32 |
+
- **Robot:** `reachy2` (19-dim state / action).
|
| 33 |
+
- **Task:** "place the apple in the plate" (1 task).
|
| 34 |
+
- **Scale:** 3 episodes (episode_index 0/1/2), 899 frames total (299 + 300 + 300),
|
| 35 |
+
single `train` split.
|
| 36 |
+
- **Sampling rate:** 30 fps.
|
| 37 |
+
- **Videos:** one camera stream (`observation.image`) in the original dataset; not
|
| 38 |
+
included here (see below).
|
| 39 |
+
|
| 40 |
+
> Note: the source `meta/info.json` reports `total_frames` 14983 and `splits`
|
| 41 |
+
> "0:50", which do not match the actually published data — the data parquet and
|
| 42 |
+
> the `meta/episodes` table both contain only 3 episodes / 899 frames. This TsFile
|
| 43 |
+
> reflects the actual published data.
|
| 44 |
+
|
| 45 |
+
## Schema (TsFile structure)
|
| 46 |
+
|
| 47 |
+
- **Time** (INT64, milliseconds) — `round(timestamp * 1000)`, restarts per episode.
|
| 48 |
+
- **episode_index** (TAG) — episode device dimension; query one episode with
|
| 49 |
+
`WHERE episode_index=0`.
|
| 50 |
+
- **task_index** (TAG) — task device dimension (single task here).
|
| 51 |
+
- **frame_index** (FIELD, INT64) — original per-episode frame counter.
|
| 52 |
+
- **sample_index** (FIELD, INT64) — source `index` column, renamed.
|
| 53 |
+
- **observation_state_0..observation_state_18** (FIELD, FLOAT) — measured 19-dim
|
| 54 |
+
state.
|
| 55 |
+
- **action_0..action_18** (FIELD, FLOAT) — commanded 19-dim action.
|
| 56 |
+
|
| 57 |
+
Vector columns are flattened by preserving the source name (`.` → `_`) and
|
| 58 |
+
appending the element index. The source `timestamp` column is dropped because it
|
| 59 |
+
equals `Time ÷ 1000` seconds.
|
| 60 |
+
|
| 61 |
+
## Videos
|
| 62 |
+
|
| 63 |
+
The camera video stream is not included in this TsFile repository. It remains in
|
| 64 |
+
the original dataset under
|
| 65 |
+
[`videos/`](https://huggingface.co/datasets/rerun/v30_apple_storage/tree/main/videos).
|
| 66 |
+
|
| 67 |
+
## Usage
|
| 68 |
+
|
| 69 |
+
Read the `.tsfile` files with the Apache TsFile Java or Python SDK.
|
| 70 |
+
|
| 71 |
+
## Source & license
|
| 72 |
+
|
| 73 |
+
- Original dataset: https://huggingface.co/datasets/rerun/v30_apple_storage
|
| 74 |
+
- Author / publisher: rerun
|
| 75 |
+
- Created with: [LeRobot](https://github.com/huggingface/lerobot) (codebase v3.0)
|
| 76 |
+
- License: apache-2.0
|
data/v30_apple_storage.tsfile
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb12e0847a9de16bb5f83f508e2ca48612705f48451d79bf2c4e2ac1792a5dfe
|
| 3 |
+
size 117186
|
meta/episodes/chunk-000/file-000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:291debea4db927f07c6df521b7a2ea941634a05cb7117381926323f663543817
|
| 3 |
+
size 40147
|
meta/info.json
ADDED
|
@@ -0,0 +1,420 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"codebase_version": "v3.0",
|
| 3 |
+
"robot_type": "reachy2",
|
| 4 |
+
"total_episodes": 3,
|
| 5 |
+
"total_frames": 14983,
|
| 6 |
+
"total_tasks": 1,
|
| 7 |
+
"chunks_size": 1000,
|
| 8 |
+
"fps": 30,
|
| 9 |
+
"splits": {
|
| 10 |
+
"train": "0:50"
|
| 11 |
+
},
|
| 12 |
+
"data_path": "data/v30_apple_storage.tsfile",
|
| 13 |
+
"features": {
|
| 14 |
+
"Time": {
|
| 15 |
+
"dtype": "int64",
|
| 16 |
+
"shape": [
|
| 17 |
+
1
|
| 18 |
+
],
|
| 19 |
+
"tsfile_role": "TIME",
|
| 20 |
+
"unit": "ms"
|
| 21 |
+
},
|
| 22 |
+
"episode_index": {
|
| 23 |
+
"dtype": "int64",
|
| 24 |
+
"shape": [
|
| 25 |
+
1
|
| 26 |
+
],
|
| 27 |
+
"tsfile_role": "TAG"
|
| 28 |
+
},
|
| 29 |
+
"task_index": {
|
| 30 |
+
"dtype": "int64",
|
| 31 |
+
"shape": [
|
| 32 |
+
1
|
| 33 |
+
],
|
| 34 |
+
"tsfile_role": "TAG"
|
| 35 |
+
},
|
| 36 |
+
"frame_index": {
|
| 37 |
+
"dtype": "int64",
|
| 38 |
+
"shape": [
|
| 39 |
+
1
|
| 40 |
+
],
|
| 41 |
+
"tsfile_role": "FIELD"
|
| 42 |
+
},
|
| 43 |
+
"sample_index": {
|
| 44 |
+
"dtype": "int64",
|
| 45 |
+
"shape": [
|
| 46 |
+
1
|
| 47 |
+
],
|
| 48 |
+
"tsfile_role": "FIELD"
|
| 49 |
+
},
|
| 50 |
+
"observation_state_0": {
|
| 51 |
+
"dtype": "float32",
|
| 52 |
+
"shape": [
|
| 53 |
+
1
|
| 54 |
+
],
|
| 55 |
+
"tsfile_role": "FIELD"
|
| 56 |
+
},
|
| 57 |
+
"observation_state_1": {
|
| 58 |
+
"dtype": "float32",
|
| 59 |
+
"shape": [
|
| 60 |
+
1
|
| 61 |
+
],
|
| 62 |
+
"tsfile_role": "FIELD"
|
| 63 |
+
},
|
| 64 |
+
"observation_state_2": {
|
| 65 |
+
"dtype": "float32",
|
| 66 |
+
"shape": [
|
| 67 |
+
1
|
| 68 |
+
],
|
| 69 |
+
"tsfile_role": "FIELD"
|
| 70 |
+
},
|
| 71 |
+
"observation_state_3": {
|
| 72 |
+
"dtype": "float32",
|
| 73 |
+
"shape": [
|
| 74 |
+
1
|
| 75 |
+
],
|
| 76 |
+
"tsfile_role": "FIELD"
|
| 77 |
+
},
|
| 78 |
+
"observation_state_4": {
|
| 79 |
+
"dtype": "float32",
|
| 80 |
+
"shape": [
|
| 81 |
+
1
|
| 82 |
+
],
|
| 83 |
+
"tsfile_role": "FIELD"
|
| 84 |
+
},
|
| 85 |
+
"observation_state_5": {
|
| 86 |
+
"dtype": "float32",
|
| 87 |
+
"shape": [
|
| 88 |
+
1
|
| 89 |
+
],
|
| 90 |
+
"tsfile_role": "FIELD"
|
| 91 |
+
},
|
| 92 |
+
"observation_state_6": {
|
| 93 |
+
"dtype": "float32",
|
| 94 |
+
"shape": [
|
| 95 |
+
1
|
| 96 |
+
],
|
| 97 |
+
"tsfile_role": "FIELD"
|
| 98 |
+
},
|
| 99 |
+
"observation_state_7": {
|
| 100 |
+
"dtype": "float32",
|
| 101 |
+
"shape": [
|
| 102 |
+
1
|
| 103 |
+
],
|
| 104 |
+
"tsfile_role": "FIELD"
|
| 105 |
+
},
|
| 106 |
+
"observation_state_8": {
|
| 107 |
+
"dtype": "float32",
|
| 108 |
+
"shape": [
|
| 109 |
+
1
|
| 110 |
+
],
|
| 111 |
+
"tsfile_role": "FIELD"
|
| 112 |
+
},
|
| 113 |
+
"observation_state_9": {
|
| 114 |
+
"dtype": "float32",
|
| 115 |
+
"shape": [
|
| 116 |
+
1
|
| 117 |
+
],
|
| 118 |
+
"tsfile_role": "FIELD"
|
| 119 |
+
},
|
| 120 |
+
"observation_state_10": {
|
| 121 |
+
"dtype": "float32",
|
| 122 |
+
"shape": [
|
| 123 |
+
1
|
| 124 |
+
],
|
| 125 |
+
"tsfile_role": "FIELD"
|
| 126 |
+
},
|
| 127 |
+
"observation_state_11": {
|
| 128 |
+
"dtype": "float32",
|
| 129 |
+
"shape": [
|
| 130 |
+
1
|
| 131 |
+
],
|
| 132 |
+
"tsfile_role": "FIELD"
|
| 133 |
+
},
|
| 134 |
+
"observation_state_12": {
|
| 135 |
+
"dtype": "float32",
|
| 136 |
+
"shape": [
|
| 137 |
+
1
|
| 138 |
+
],
|
| 139 |
+
"tsfile_role": "FIELD"
|
| 140 |
+
},
|
| 141 |
+
"observation_state_13": {
|
| 142 |
+
"dtype": "float32",
|
| 143 |
+
"shape": [
|
| 144 |
+
1
|
| 145 |
+
],
|
| 146 |
+
"tsfile_role": "FIELD"
|
| 147 |
+
},
|
| 148 |
+
"observation_state_14": {
|
| 149 |
+
"dtype": "float32",
|
| 150 |
+
"shape": [
|
| 151 |
+
1
|
| 152 |
+
],
|
| 153 |
+
"tsfile_role": "FIELD"
|
| 154 |
+
},
|
| 155 |
+
"observation_state_15": {
|
| 156 |
+
"dtype": "float32",
|
| 157 |
+
"shape": [
|
| 158 |
+
1
|
| 159 |
+
],
|
| 160 |
+
"tsfile_role": "FIELD"
|
| 161 |
+
},
|
| 162 |
+
"observation_state_16": {
|
| 163 |
+
"dtype": "float32",
|
| 164 |
+
"shape": [
|
| 165 |
+
1
|
| 166 |
+
],
|
| 167 |
+
"tsfile_role": "FIELD"
|
| 168 |
+
},
|
| 169 |
+
"observation_state_17": {
|
| 170 |
+
"dtype": "float32",
|
| 171 |
+
"shape": [
|
| 172 |
+
1
|
| 173 |
+
],
|
| 174 |
+
"tsfile_role": "FIELD"
|
| 175 |
+
},
|
| 176 |
+
"observation_state_18": {
|
| 177 |
+
"dtype": "float32",
|
| 178 |
+
"shape": [
|
| 179 |
+
1
|
| 180 |
+
],
|
| 181 |
+
"tsfile_role": "FIELD"
|
| 182 |
+
},
|
| 183 |
+
"action_0": {
|
| 184 |
+
"dtype": "float32",
|
| 185 |
+
"shape": [
|
| 186 |
+
1
|
| 187 |
+
],
|
| 188 |
+
"tsfile_role": "FIELD"
|
| 189 |
+
},
|
| 190 |
+
"action_1": {
|
| 191 |
+
"dtype": "float32",
|
| 192 |
+
"shape": [
|
| 193 |
+
1
|
| 194 |
+
],
|
| 195 |
+
"tsfile_role": "FIELD"
|
| 196 |
+
},
|
| 197 |
+
"action_2": {
|
| 198 |
+
"dtype": "float32",
|
| 199 |
+
"shape": [
|
| 200 |
+
1
|
| 201 |
+
],
|
| 202 |
+
"tsfile_role": "FIELD"
|
| 203 |
+
},
|
| 204 |
+
"action_3": {
|
| 205 |
+
"dtype": "float32",
|
| 206 |
+
"shape": [
|
| 207 |
+
1
|
| 208 |
+
],
|
| 209 |
+
"tsfile_role": "FIELD"
|
| 210 |
+
},
|
| 211 |
+
"action_4": {
|
| 212 |
+
"dtype": "float32",
|
| 213 |
+
"shape": [
|
| 214 |
+
1
|
| 215 |
+
],
|
| 216 |
+
"tsfile_role": "FIELD"
|
| 217 |
+
},
|
| 218 |
+
"action_5": {
|
| 219 |
+
"dtype": "float32",
|
| 220 |
+
"shape": [
|
| 221 |
+
1
|
| 222 |
+
],
|
| 223 |
+
"tsfile_role": "FIELD"
|
| 224 |
+
},
|
| 225 |
+
"action_6": {
|
| 226 |
+
"dtype": "float32",
|
| 227 |
+
"shape": [
|
| 228 |
+
1
|
| 229 |
+
],
|
| 230 |
+
"tsfile_role": "FIELD"
|
| 231 |
+
},
|
| 232 |
+
"action_7": {
|
| 233 |
+
"dtype": "float32",
|
| 234 |
+
"shape": [
|
| 235 |
+
1
|
| 236 |
+
],
|
| 237 |
+
"tsfile_role": "FIELD"
|
| 238 |
+
},
|
| 239 |
+
"action_8": {
|
| 240 |
+
"dtype": "float32",
|
| 241 |
+
"shape": [
|
| 242 |
+
1
|
| 243 |
+
],
|
| 244 |
+
"tsfile_role": "FIELD"
|
| 245 |
+
},
|
| 246 |
+
"action_9": {
|
| 247 |
+
"dtype": "float32",
|
| 248 |
+
"shape": [
|
| 249 |
+
1
|
| 250 |
+
],
|
| 251 |
+
"tsfile_role": "FIELD"
|
| 252 |
+
},
|
| 253 |
+
"action_10": {
|
| 254 |
+
"dtype": "float32",
|
| 255 |
+
"shape": [
|
| 256 |
+
1
|
| 257 |
+
],
|
| 258 |
+
"tsfile_role": "FIELD"
|
| 259 |
+
},
|
| 260 |
+
"action_11": {
|
| 261 |
+
"dtype": "float32",
|
| 262 |
+
"shape": [
|
| 263 |
+
1
|
| 264 |
+
],
|
| 265 |
+
"tsfile_role": "FIELD"
|
| 266 |
+
},
|
| 267 |
+
"action_12": {
|
| 268 |
+
"dtype": "float32",
|
| 269 |
+
"shape": [
|
| 270 |
+
1
|
| 271 |
+
],
|
| 272 |
+
"tsfile_role": "FIELD"
|
| 273 |
+
},
|
| 274 |
+
"action_13": {
|
| 275 |
+
"dtype": "float32",
|
| 276 |
+
"shape": [
|
| 277 |
+
1
|
| 278 |
+
],
|
| 279 |
+
"tsfile_role": "FIELD"
|
| 280 |
+
},
|
| 281 |
+
"action_14": {
|
| 282 |
+
"dtype": "float32",
|
| 283 |
+
"shape": [
|
| 284 |
+
1
|
| 285 |
+
],
|
| 286 |
+
"tsfile_role": "FIELD"
|
| 287 |
+
},
|
| 288 |
+
"action_15": {
|
| 289 |
+
"dtype": "float32",
|
| 290 |
+
"shape": [
|
| 291 |
+
1
|
| 292 |
+
],
|
| 293 |
+
"tsfile_role": "FIELD"
|
| 294 |
+
},
|
| 295 |
+
"action_16": {
|
| 296 |
+
"dtype": "float32",
|
| 297 |
+
"shape": [
|
| 298 |
+
1
|
| 299 |
+
],
|
| 300 |
+
"tsfile_role": "FIELD"
|
| 301 |
+
},
|
| 302 |
+
"action_17": {
|
| 303 |
+
"dtype": "float32",
|
| 304 |
+
"shape": [
|
| 305 |
+
1
|
| 306 |
+
],
|
| 307 |
+
"tsfile_role": "FIELD"
|
| 308 |
+
},
|
| 309 |
+
"action_18": {
|
| 310 |
+
"dtype": "float32",
|
| 311 |
+
"shape": [
|
| 312 |
+
1
|
| 313 |
+
],
|
| 314 |
+
"tsfile_role": "FIELD"
|
| 315 |
+
}
|
| 316 |
+
},
|
| 317 |
+
"data_files_size_in_mb": 100,
|
| 318 |
+
"video_files_size_in_mb": 500,
|
| 319 |
+
"video_path_original": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
|
| 320 |
+
"tsfile_conversion": {
|
| 321 |
+
"source_dataset": "rerun/v30_apple_storage",
|
| 322 |
+
"source_data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
|
| 323 |
+
"converted_data_path": "data/v30_apple_storage.tsfile",
|
| 324 |
+
"table_name": "v30_apple_storage",
|
| 325 |
+
"granularity": "merged",
|
| 326 |
+
"time_precision": "ms",
|
| 327 |
+
"time_mapping": {
|
| 328 |
+
"source": "timestamp",
|
| 329 |
+
"fps": 30,
|
| 330 |
+
"unit": "milliseconds"
|
| 331 |
+
},
|
| 332 |
+
"tag_columns": [
|
| 333 |
+
"episode_index",
|
| 334 |
+
"task_index"
|
| 335 |
+
],
|
| 336 |
+
"row_count": 899,
|
| 337 |
+
"feature_source": "features describe the converted TsFile schema",
|
| 338 |
+
"flattened_features": {
|
| 339 |
+
"observation.state": [
|
| 340 |
+
"observation_state_0",
|
| 341 |
+
"observation_state_1",
|
| 342 |
+
"observation_state_2",
|
| 343 |
+
"observation_state_3",
|
| 344 |
+
"observation_state_4",
|
| 345 |
+
"observation_state_5",
|
| 346 |
+
"observation_state_6",
|
| 347 |
+
"observation_state_7",
|
| 348 |
+
"observation_state_8",
|
| 349 |
+
"observation_state_9",
|
| 350 |
+
"observation_state_10",
|
| 351 |
+
"observation_state_11",
|
| 352 |
+
"observation_state_12",
|
| 353 |
+
"observation_state_13",
|
| 354 |
+
"observation_state_14",
|
| 355 |
+
"observation_state_15",
|
| 356 |
+
"observation_state_16",
|
| 357 |
+
"observation_state_17",
|
| 358 |
+
"observation_state_18"
|
| 359 |
+
],
|
| 360 |
+
"action": [
|
| 361 |
+
"action_0",
|
| 362 |
+
"action_1",
|
| 363 |
+
"action_2",
|
| 364 |
+
"action_3",
|
| 365 |
+
"action_4",
|
| 366 |
+
"action_5",
|
| 367 |
+
"action_6",
|
| 368 |
+
"action_7",
|
| 369 |
+
"action_8",
|
| 370 |
+
"action_9",
|
| 371 |
+
"action_10",
|
| 372 |
+
"action_11",
|
| 373 |
+
"action_12",
|
| 374 |
+
"action_13",
|
| 375 |
+
"action_14",
|
| 376 |
+
"action_15",
|
| 377 |
+
"action_16",
|
| 378 |
+
"action_17",
|
| 379 |
+
"action_18"
|
| 380 |
+
]
|
| 381 |
+
},
|
| 382 |
+
"renamed_features": {
|
| 383 |
+
"index": "sample_index"
|
| 384 |
+
},
|
| 385 |
+
"dropped_features": [
|
| 386 |
+
"timestamp"
|
| 387 |
+
],
|
| 388 |
+
"omitted_features": [
|
| 389 |
+
"observation.image"
|
| 390 |
+
],
|
| 391 |
+
"original_video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
|
| 392 |
+
"original_video_features": {
|
| 393 |
+
"observation.image": {
|
| 394 |
+
"dtype": "video",
|
| 395 |
+
"shape": [
|
| 396 |
+
3,
|
| 397 |
+
720,
|
| 398 |
+
960
|
| 399 |
+
],
|
| 400 |
+
"names": [
|
| 401 |
+
"channel",
|
| 402 |
+
"height",
|
| 403 |
+
"width"
|
| 404 |
+
],
|
| 405 |
+
"info": {
|
| 406 |
+
"video.fps": 30.0,
|
| 407 |
+
"video.height": 720,
|
| 408 |
+
"video.width": 960,
|
| 409 |
+
"video.channels": 3,
|
| 410 |
+
"video.codec": "h264",
|
| 411 |
+
"video.pix_fmt": "yuv420p",
|
| 412 |
+
"video.is_depth_map": false,
|
| 413 |
+
"has_audio": false
|
| 414 |
+
}
|
| 415 |
+
}
|
| 416 |
+
},
|
| 417 |
+
"original_video_source": "https://huggingface.co/datasets/rerun/v30_apple_storage/tree/main/videos",
|
| 418 |
+
"video_policy": "Videos are not uploaded to this repository; use the original HuggingFace dataset videos."
|
| 419 |
+
}
|
| 420 |
+
}
|
meta/stats.json
ADDED
|
@@ -0,0 +1,338 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"task_index": {
|
| 3 |
+
"min": [
|
| 4 |
+
0
|
| 5 |
+
],
|
| 6 |
+
"max": [
|
| 7 |
+
0
|
| 8 |
+
],
|
| 9 |
+
"mean": [
|
| 10 |
+
0.0
|
| 11 |
+
],
|
| 12 |
+
"std": [
|
| 13 |
+
0.0
|
| 14 |
+
],
|
| 15 |
+
"count": [
|
| 16 |
+
899
|
| 17 |
+
]
|
| 18 |
+
},
|
| 19 |
+
"observation.image": {
|
| 20 |
+
"min": [
|
| 21 |
+
[
|
| 22 |
+
[
|
| 23 |
+
0.0
|
| 24 |
+
]
|
| 25 |
+
],
|
| 26 |
+
[
|
| 27 |
+
[
|
| 28 |
+
0.0
|
| 29 |
+
]
|
| 30 |
+
],
|
| 31 |
+
[
|
| 32 |
+
[
|
| 33 |
+
0.0
|
| 34 |
+
]
|
| 35 |
+
]
|
| 36 |
+
],
|
| 37 |
+
"max": [
|
| 38 |
+
[
|
| 39 |
+
[
|
| 40 |
+
1.0
|
| 41 |
+
]
|
| 42 |
+
],
|
| 43 |
+
[
|
| 44 |
+
[
|
| 45 |
+
1.0
|
| 46 |
+
]
|
| 47 |
+
],
|
| 48 |
+
[
|
| 49 |
+
[
|
| 50 |
+
1.0
|
| 51 |
+
]
|
| 52 |
+
]
|
| 53 |
+
],
|
| 54 |
+
"mean": [
|
| 55 |
+
[
|
| 56 |
+
[
|
| 57 |
+
0.5010134081045786
|
| 58 |
+
]
|
| 59 |
+
],
|
| 60 |
+
[
|
| 61 |
+
[
|
| 62 |
+
0.4363989432652791
|
| 63 |
+
]
|
| 64 |
+
],
|
| 65 |
+
[
|
| 66 |
+
[
|
| 67 |
+
0.3023544450600942
|
| 68 |
+
]
|
| 69 |
+
]
|
| 70 |
+
],
|
| 71 |
+
"std": [
|
| 72 |
+
[
|
| 73 |
+
[
|
| 74 |
+
0.27459820004901897
|
| 75 |
+
]
|
| 76 |
+
],
|
| 77 |
+
[
|
| 78 |
+
[
|
| 79 |
+
0.25751124981131
|
| 80 |
+
]
|
| 81 |
+
],
|
| 82 |
+
[
|
| 83 |
+
[
|
| 84 |
+
0.24950656772114543
|
| 85 |
+
]
|
| 86 |
+
]
|
| 87 |
+
],
|
| 88 |
+
"count": [
|
| 89 |
+
300
|
| 90 |
+
]
|
| 91 |
+
},
|
| 92 |
+
"frame_index": {
|
| 93 |
+
"min": [
|
| 94 |
+
0
|
| 95 |
+
],
|
| 96 |
+
"max": [
|
| 97 |
+
299
|
| 98 |
+
],
|
| 99 |
+
"mean": [
|
| 100 |
+
149.3337041156841
|
| 101 |
+
],
|
| 102 |
+
"std": [
|
| 103 |
+
86.50647540986058
|
| 104 |
+
],
|
| 105 |
+
"count": [
|
| 106 |
+
899
|
| 107 |
+
]
|
| 108 |
+
},
|
| 109 |
+
"action": {
|
| 110 |
+
"min": [
|
| 111 |
+
0.10253448039293289,
|
| 112 |
+
0.12500238418579102,
|
| 113 |
+
-0.12004590034484863,
|
| 114 |
+
-1.8093351125717163,
|
| 115 |
+
0.16925236582756042,
|
| 116 |
+
-0.266880065202713,
|
| 117 |
+
0.3643991947174072,
|
| 118 |
+
2.268928050994873,
|
| 119 |
+
-0.6112457513809204,
|
| 120 |
+
-0.5018304586410522,
|
| 121 |
+
-0.18440940976142883,
|
| 122 |
+
-2.066098928451538,
|
| 123 |
+
-0.5826585292816162,
|
| 124 |
+
-0.14900252223014832,
|
| 125 |
+
-0.6999185681343079,
|
| 126 |
+
-0.0872664600610733,
|
| 127 |
+
0.153178870677948,
|
| 128 |
+
-0.049591563642024994,
|
| 129 |
+
-0.5570006370544434
|
| 130 |
+
],
|
| 131 |
+
"max": [
|
| 132 |
+
0.29267793893814087,
|
| 133 |
+
0.18042722344398499,
|
| 134 |
+
-0.0012760208919644356,
|
| 135 |
+
-1.67780339717865,
|
| 136 |
+
0.5869255661964417,
|
| 137 |
+
0.24816198647022247,
|
| 138 |
+
0.9826028347015381,
|
| 139 |
+
2.268928050994873,
|
| 140 |
+
0.543479859828949,
|
| 141 |
+
0.116232730448246,
|
| 142 |
+
1.011518955230713,
|
| 143 |
+
-0.7384811043739319,
|
| 144 |
+
0.6665992736816406,
|
| 145 |
+
0.6355047821998596,
|
| 146 |
+
0.14824776351451874,
|
| 147 |
+
2.268928050994873,
|
| 148 |
+
0.4285999536514282,
|
| 149 |
+
0.5435958504676819,
|
| 150 |
+
-0.1755671352148056
|
| 151 |
+
],
|
| 152 |
+
"mean": [
|
| 153 |
+
0.18531973567170748,
|
| 154 |
+
0.1624489835358833,
|
| 155 |
+
-0.04825357639451446,
|
| 156 |
+
-1.7736078971485143,
|
| 157 |
+
0.2739605461231726,
|
| 158 |
+
0.15057907577550186,
|
| 159 |
+
0.68791920165464,
|
| 160 |
+
2.2689223289489746,
|
| 161 |
+
0.01624157652258873,
|
| 162 |
+
-0.16195469463163276,
|
| 163 |
+
0.1325976046193826,
|
| 164 |
+
-1.5060062639174923,
|
| 165 |
+
-0.021869805853842895,
|
| 166 |
+
0.17628630171131107,
|
| 167 |
+
-0.4078123431250834,
|
| 168 |
+
1.7699875334346122,
|
| 169 |
+
0.2953992313285823,
|
| 170 |
+
0.4573003547939496,
|
| 171 |
+
-0.32624128490719567
|
| 172 |
+
],
|
| 173 |
+
"std": [
|
| 174 |
+
0.06432500167193,
|
| 175 |
+
0.014915174754678904,
|
| 176 |
+
0.022609984666424617,
|
| 177 |
+
0.032809199297035886,
|
| 178 |
+
0.10050104001170003,
|
| 179 |
+
0.10583439556449765,
|
| 180 |
+
0.1607266083166157,
|
| 181 |
+
5.7220458984375e-06,
|
| 182 |
+
0.23953867955733193,
|
| 183 |
+
0.09626464523634093,
|
| 184 |
+
0.2526763058309326,
|
| 185 |
+
0.2630974831813974,
|
| 186 |
+
0.31014009282971555,
|
| 187 |
+
0.2016927293211116,
|
| 188 |
+
0.20045756666354622,
|
| 189 |
+
0.9578612375568876,
|
| 190 |
+
0.05193105446008784,
|
| 191 |
+
0.10721211739995792,
|
| 192 |
+
0.07727534140265882
|
| 193 |
+
],
|
| 194 |
+
"count": [
|
| 195 |
+
899
|
| 196 |
+
]
|
| 197 |
+
},
|
| 198 |
+
"episode_index": {
|
| 199 |
+
"min": [
|
| 200 |
+
0
|
| 201 |
+
],
|
| 202 |
+
"max": [
|
| 203 |
+
2
|
| 204 |
+
],
|
| 205 |
+
"mean": [
|
| 206 |
+
1.0011123470522802
|
| 207 |
+
],
|
| 208 |
+
"std": [
|
| 209 |
+
0.816268734547601
|
| 210 |
+
],
|
| 211 |
+
"count": [
|
| 212 |
+
899
|
| 213 |
+
]
|
| 214 |
+
},
|
| 215 |
+
"observation.state": {
|
| 216 |
+
"min": [
|
| 217 |
+
0.10363965481519699,
|
| 218 |
+
0.12525075674057007,
|
| 219 |
+
-0.11955597251653671,
|
| 220 |
+
-1.8093100786209106,
|
| 221 |
+
0.16902926564216614,
|
| 222 |
+
-0.25760456919670105,
|
| 223 |
+
0.39665597677230835,
|
| 224 |
+
2.267223596572876,
|
| 225 |
+
-0.6023451089859009,
|
| 226 |
+
-0.48995980620384216,
|
| 227 |
+
-0.18240806460380554,
|
| 228 |
+
-2.0561656951904297,
|
| 229 |
+
-0.5724678039550781,
|
| 230 |
+
-0.11078061908483505,
|
| 231 |
+
-0.6981110572814941,
|
| 232 |
+
0.7148351669311523,
|
| 233 |
+
0.15381518006324768,
|
| 234 |
+
-0.048666831105947495,
|
| 235 |
+
-0.5561100244522095
|
| 236 |
+
],
|
| 237 |
+
"max": [
|
| 238 |
+
0.292449027299881,
|
| 239 |
+
0.18026727437973022,
|
| 240 |
+
-0.0038482400123029947,
|
| 241 |
+
-1.6784697771072388,
|
| 242 |
+
0.5798936486244202,
|
| 243 |
+
0.24800486862659454,
|
| 244 |
+
0.9816973209381104,
|
| 245 |
+
2.2687575817108154,
|
| 246 |
+
0.5629791021347046,
|
| 247 |
+
0.11419571936130524,
|
| 248 |
+
0.9957994818687439,
|
| 249 |
+
-0.7492401003837585,
|
| 250 |
+
0.6567565202713013,
|
| 251 |
+
0.6331397294998169,
|
| 252 |
+
0.14031702280044556,
|
| 253 |
+
2.2748935222625732,
|
| 254 |
+
0.4282764494419098,
|
| 255 |
+
0.5433214902877808,
|
| 256 |
+
-0.1756899356842041
|
| 257 |
+
],
|
| 258 |
+
"mean": [
|
| 259 |
+
0.18535153728571033,
|
| 260 |
+
0.16254352633162786,
|
| 261 |
+
-0.048002525679228435,
|
| 262 |
+
-1.7740123895172017,
|
| 263 |
+
0.2730683585228989,
|
| 264 |
+
0.15118448600355325,
|
| 265 |
+
0.6891792487514695,
|
| 266 |
+
2.2687133077254416,
|
| 267 |
+
0.018985385334200005,
|
| 268 |
+
-0.16170567648694564,
|
| 269 |
+
0.13333838276391036,
|
| 270 |
+
-1.5102357426792947,
|
| 271 |
+
-0.021868321650948486,
|
| 272 |
+
0.17574314075264172,
|
| 273 |
+
-0.40703197315882256,
|
| 274 |
+
2.073030249560635,
|
| 275 |
+
0.2957476487546927,
|
| 276 |
+
0.45729661146976525,
|
| 277 |
+
-0.3267114602352541
|
| 278 |
+
],
|
| 279 |
+
"std": [
|
| 280 |
+
0.06434886710400255,
|
| 281 |
+
0.014747625434021621,
|
| 282 |
+
0.022129388869376484,
|
| 283 |
+
0.032243760673971035,
|
| 284 |
+
0.09937812835104863,
|
| 285 |
+
0.10463168547728044,
|
| 286 |
+
0.16042006093236902,
|
| 287 |
+
0.0002522416711052316,
|
| 288 |
+
0.2416493866449695,
|
| 289 |
+
0.09532654919474055,
|
| 290 |
+
0.2518124532381351,
|
| 291 |
+
0.2616915529360761,
|
| 292 |
+
0.3096431405898116,
|
| 293 |
+
0.2015677434954793,
|
| 294 |
+
0.20020479329547552,
|
| 295 |
+
0.35798109167539083,
|
| 296 |
+
0.051870845469486934,
|
| 297 |
+
0.10708441386573737,
|
| 298 |
+
0.07695733292380723
|
| 299 |
+
],
|
| 300 |
+
"count": [
|
| 301 |
+
899
|
| 302 |
+
]
|
| 303 |
+
},
|
| 304 |
+
"index": {
|
| 305 |
+
"min": [
|
| 306 |
+
0
|
| 307 |
+
],
|
| 308 |
+
"max": [
|
| 309 |
+
898
|
| 310 |
+
],
|
| 311 |
+
"mean": [
|
| 312 |
+
449.0
|
| 313 |
+
],
|
| 314 |
+
"std": [
|
| 315 |
+
259.5187854472196
|
| 316 |
+
],
|
| 317 |
+
"count": [
|
| 318 |
+
899
|
| 319 |
+
]
|
| 320 |
+
},
|
| 321 |
+
"timestamp": {
|
| 322 |
+
"min": [
|
| 323 |
+
0.0
|
| 324 |
+
],
|
| 325 |
+
"max": [
|
| 326 |
+
9.966666221618652
|
| 327 |
+
],
|
| 328 |
+
"mean": [
|
| 329 |
+
4.977790157840037
|
| 330 |
+
],
|
| 331 |
+
"std": [
|
| 332 |
+
2.8835490666575563
|
| 333 |
+
],
|
| 334 |
+
"count": [
|
| 335 |
+
899
|
| 336 |
+
]
|
| 337 |
+
}
|
| 338 |
+
}
|
meta/tasks.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e876d9035f303cbd9ca20ccc4489af3016169f751459964090f7192fbd04b1fc
|
| 3 |
+
size 2236
|