azithromycin commited on
Commit
b865763
·
verified ·
1 Parent(s): ac16b8b

Add TsFile (converted from unitreerobotics/G1_Dex1_Clean_Table)

Browse files
.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/unitreerobotics_G1_Dex1_Clean_Table.tsfile filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,109 @@
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
+ - tabular
9
+ modality:
10
+ - timeseries
11
+ - tabular
12
+ - video
13
+ pretty_name: G1 Dex1 Clean Table TsFile
14
+ configs:
15
+ - config_name: default
16
+ data_files:
17
+ - split: train
18
+ path: data/unitreerobotics_G1_Dex1_Clean_Table.tsfile
19
+ size_categories:
20
+ - 100K<n<1M
21
  ---
22
+
23
+ # G1 Dex1 Clean Table — Apache TsFile conversion
24
+
25
+ This repository is a compact Apache TsFile representation of the
26
+ [`unitreerobotics/G1_Dex1_Clean_Table`](https://huggingface.co/datasets/unitreerobotics/G1_Dex1_Clean_Table)
27
+ LeRobot dataset. It contains the robot state/action time series and episode/task
28
+ metadata. The source camera videos are intentionally not copied here.
29
+
30
+ ## Source dataset and attribution
31
+
32
+ - **Publisher/authors:** Unitree Robotics; dataset contributors shown by Hugging Face are `wangcong` and `wangcong627`.
33
+ - **License:** Apache-2.0.
34
+ - **Homepage:** [UnifoLM-VLA-0](https://unigen-x.github.io/unifolm-vla.github.io/).
35
+ - **Task:** organize and tidy items on a table (7-DOF dual-arm G1, gripper end effectors).
36
+ - **Acquisition:** 30 Hz; 640×480 images; approximately 20–40 seconds per operation.
37
+ - **Citation/paper:** the original dataset card does not provide a BibTeX citation or paper reference.
38
+
39
+ The source has one `train` split with 200 episodes, 265,701 rows and one task.
40
+ There are 200 source Parquet episode files in `data/chunk-000/` and 800 source
41
+ video files (four streams × 200 episodes). The original video layout is:
42
+
43
+ ```
44
+ videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4
45
+ ```
46
+
47
+ For this dataset, `video_key` is one of
48
+ `observation.images.cam_left_high`, `cam_right_high`, `cam_left_wrist`, or
49
+ `cam_right_wrist`. See the [original videos directory](https://huggingface.co/datasets/unitreerobotics/G1_Dex1_Clean_Table/tree/main/videos).
50
+ Videos remain in the original Hugging Face dataset and are **not included** in
51
+ this TsFile repository; align them to rows with `episode_index` and
52
+ `frame_index`.
53
+
54
+ ## Converted artifact
55
+
56
+ - **TsFile:** `data/unitreerobotics_G1_Dex1_Clean_Table.tsfile`
57
+ - **Table:** `unitreerobotics_G1_Dex1_Clean_Table` (the Python SDK exposes the normalized lower-case table name)
58
+ - **Rows:** 265,701
59
+ - **Episodes/devices:** 200
60
+ - **Time precision:** integer milliseconds
61
+ - **Source Parquet shards:** 200 episode files, merged into one TsFile
62
+
63
+ ### Schema
64
+
65
+ | Category | Columns |
66
+ | --- | --- |
67
+ | TIME | `Time` (`INT64`, ms) |
68
+ | TAG/device | `episode_index` (`INT64`), `task_index` (`INT64`) |
69
+ | FIELD scalars | `frame_index`, `sample_index` (`INT64`); four gripper scalars (`FLOAT`) |
70
+ | FIELD vectors | `observation.left_arm`/`right_arm` (7 each), `observation.left_ee`/`right_ee` (6 each), `observation.body` (29), and matching `action.*` vectors, flattened to scalar `*_0` … `*_{N-1}` FLOAT fields |
71
+
72
+ Dots in source names are replaced by underscores while preserving the full
73
+ prefix (for example, `observation.left_arm` →
74
+ `observation_left_arm_0..observation_left_arm_6`). The source `index` is
75
+ renamed to `sample_index`.
76
+
77
+ ## Conversion details
78
+
79
+ - `Time = round(timestamp * 1000)` with millisecond precision. `timestamp` is
80
+ dropped because it is redundant (`Time / 1000` seconds); `frame_index` is kept.
81
+ - Rows are sorted by `episode_index`, `task_index`, then `Time`; `Time` is
82
+ monotonic within each episode and restarts from zero at the first frame.
83
+ - `episode_index` and `task_index` are stored as TsFile TAG/device dimensions,
84
+ not duplicated as ordinary fields.
85
+ - Numeric codec profile: FLOAT/DOUBLE → **GORILLA**, INT32/INT64 and Time →
86
+ **TS_2DIFF**, all with **LZ4** compression. No BOOLEAN source fields exist in
87
+ this dataset; the configured BOOLEAN policy is RLE + LZ4.
88
+ - Dropped/omitted source data: only redundant `timestamp` is dropped from the
89
+ tabular rows; four video columns are omitted from TsFile and remain at the
90
+ source URL above. No numeric rows or measurements are intentionally removed.
91
+
92
+ ## Reading
93
+
94
+ ```python
95
+ from tsfile import TsFileReader
96
+
97
+ reader = TsFileReader("data/unitreerobotics_G1_Dex1_Clean_Table.tsfile")
98
+ table = next(iter(reader.get_all_table_schemas()))
99
+ columns = [c.get_column_name() for c in reader.get_all_table_schemas()[table].get_columns()
100
+ if c.get_column_name() != "Time"]
101
+ with reader.query_table(table, columns, batch_size=65536) as result:
102
+ batch = result.read_arrow_batch()
103
+ ```
104
+
105
+ ## Local conversion and validation files
106
+
107
+ The dataset-specific script is `D:\\code\\scripts\\convert_unitreerobotics_G1_Dex1_Clean_Table.py` and
108
+ the config is `D:\\code\\config\\unitreerobotics_G1_Dex1_Clean_Table.yaml`. Local validation
109
+ reports are kept under `conversion_reports/`; they are not part of the upload set.
data/unitreerobotics_G1_Dex1_Clean_Table.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8970a777274c23a139d896f8ed0badafe6cf1a2eee616edd9f6c4a99c997bf0
3
+ size 78987094
meta/episodes.jsonl ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"episode_index": 0, "tasks": ["Organize and tidy the items on the table."], "length": 1195}
2
+ {"episode_index": 1, "tasks": ["Organize and tidy the items on the table."], "length": 1072}
3
+ {"episode_index": 2, "tasks": ["Organize and tidy the items on the table."], "length": 1010}
4
+ {"episode_index": 3, "tasks": ["Organize and tidy the items on the table."], "length": 1330}
5
+ {"episode_index": 4, "tasks": ["Organize and tidy the items on the table."], "length": 1561}
6
+ {"episode_index": 5, "tasks": ["Organize and tidy the items on the table."], "length": 1564}
7
+ {"episode_index": 6, "tasks": ["Organize and tidy the items on the table."], "length": 1161}
8
+ {"episode_index": 7, "tasks": ["Organize and tidy the items on the table."], "length": 1334}
9
+ {"episode_index": 8, "tasks": ["Organize and tidy the items on the table."], "length": 1082}
10
+ {"episode_index": 9, "tasks": ["Organize and tidy the items on the table."], "length": 1052}
11
+ {"episode_index": 10, "tasks": ["Organize and tidy the items on the table."], "length": 1334}
12
+ {"episode_index": 11, "tasks": ["Organize and tidy the items on the table."], "length": 1059}
13
+ {"episode_index": 12, "tasks": ["Organize and tidy the items on the table."], "length": 1177}
14
+ {"episode_index": 13, "tasks": ["Organize and tidy the items on the table."], "length": 1109}
15
+ {"episode_index": 14, "tasks": ["Organize and tidy the items on the table."], "length": 1514}
16
+ {"episode_index": 15, "tasks": ["Organize and tidy the items on the table."], "length": 1531}
17
+ {"episode_index": 16, "tasks": ["Organize and tidy the items on the table."], "length": 1487}
18
+ {"episode_index": 17, "tasks": ["Organize and tidy the items on the table."], "length": 1370}
19
+ {"episode_index": 18, "tasks": ["Organize and tidy the items on the table."], "length": 1161}
20
+ {"episode_index": 19, "tasks": ["Organize and tidy the items on the table."], "length": 1028}
21
+ {"episode_index": 20, "tasks": ["Organize and tidy the items on the table."], "length": 1334}
22
+ {"episode_index": 21, "tasks": ["Organize and tidy the items on the table."], "length": 1452}
23
+ {"episode_index": 22, "tasks": ["Organize and tidy the items on the table."], "length": 1131}
24
+ {"episode_index": 23, "tasks": ["Organize and tidy the items on the table."], "length": 1072}
25
+ {"episode_index": 24, "tasks": ["Organize and tidy the items on the table."], "length": 1328}
26
+ {"episode_index": 25, "tasks": ["Organize and tidy the items on the table."], "length": 1276}
27
+ {"episode_index": 26, "tasks": ["Organize and tidy the items on the table."], "length": 1256}
28
+ {"episode_index": 27, "tasks": ["Organize and tidy the items on the table."], "length": 1056}
29
+ {"episode_index": 28, "tasks": ["Organize and tidy the items on the table."], "length": 1189}
30
+ {"episode_index": 29, "tasks": ["Organize and tidy the items on the table."], "length": 1693}
31
+ {"episode_index": 30, "tasks": ["Organize and tidy the items on the table."], "length": 1173}
32
+ {"episode_index": 31, "tasks": ["Organize and tidy the items on the table."], "length": 1843}
33
+ {"episode_index": 32, "tasks": ["Organize and tidy the items on the table."], "length": 1620}
34
+ {"episode_index": 33, "tasks": ["Organize and tidy the items on the table."], "length": 1512}
35
+ {"episode_index": 34, "tasks": ["Organize and tidy the items on the table."], "length": 1318}
36
+ {"episode_index": 35, "tasks": ["Organize and tidy the items on the table."], "length": 1818}
37
+ {"episode_index": 36, "tasks": ["Organize and tidy the items on the table."], "length": 1324}
38
+ {"episode_index": 37, "tasks": ["Organize and tidy the items on the table."], "length": 1076}
39
+ {"episode_index": 38, "tasks": ["Organize and tidy the items on the table."], "length": 1219}
40
+ {"episode_index": 39, "tasks": ["Organize and tidy the items on the table."], "length": 1012}
41
+ {"episode_index": 40, "tasks": ["Organize and tidy the items on the table."], "length": 1132}
42
+ {"episode_index": 41, "tasks": ["Organize and tidy the items on the table."], "length": 1859}
43
+ {"episode_index": 42, "tasks": ["Organize and tidy the items on the table."], "length": 1294}
44
+ {"episode_index": 43, "tasks": ["Organize and tidy the items on the table."], "length": 1433}
45
+ {"episode_index": 44, "tasks": ["Organize and tidy the items on the table."], "length": 1254}
46
+ {"episode_index": 45, "tasks": ["Organize and tidy the items on the table."], "length": 1009}
47
+ {"episode_index": 46, "tasks": ["Organize and tidy the items on the table."], "length": 1507}
48
+ {"episode_index": 47, "tasks": ["Organize and tidy the items on the table."], "length": 1347}
49
+ {"episode_index": 48, "tasks": ["Organize and tidy the items on the table."], "length": 1207}
50
+ {"episode_index": 49, "tasks": ["Organize and tidy the items on the table."], "length": 1029}
51
+ {"episode_index": 50, "tasks": ["Organize and tidy the items on the table."], "length": 1945}
52
+ {"episode_index": 51, "tasks": ["Organize and tidy the items on the table."], "length": 1182}
53
+ {"episode_index": 52, "tasks": ["Organize and tidy the items on the table."], "length": 1334}
54
+ {"episode_index": 53, "tasks": ["Organize and tidy the items on the table."], "length": 1271}
55
+ {"episode_index": 54, "tasks": ["Organize and tidy the items on the table."], "length": 1168}
56
+ {"episode_index": 55, "tasks": ["Organize and tidy the items on the table."], "length": 1316}
57
+ {"episode_index": 56, "tasks": ["Organize and tidy the items on the table."], "length": 1265}
58
+ {"episode_index": 57, "tasks": ["Organize and tidy the items on the table."], "length": 1458}
59
+ {"episode_index": 58, "tasks": ["Organize and tidy the items on the table."], "length": 1895}
60
+ {"episode_index": 59, "tasks": ["Organize and tidy the items on the table."], "length": 1493}
61
+ {"episode_index": 60, "tasks": ["Organize and tidy the items on the table."], "length": 1408}
62
+ {"episode_index": 61, "tasks": ["Organize and tidy the items on the table."], "length": 1079}
63
+ {"episode_index": 62, "tasks": ["Organize and tidy the items on the table."], "length": 1748}
64
+ {"episode_index": 63, "tasks": ["Organize and tidy the items on the table."], "length": 1585}
65
+ {"episode_index": 64, "tasks": ["Organize and tidy the items on the table."], "length": 1019}
66
+ {"episode_index": 65, "tasks": ["Organize and tidy the items on the table."], "length": 1042}
67
+ {"episode_index": 66, "tasks": ["Organize and tidy the items on the table."], "length": 1082}
68
+ {"episode_index": 67, "tasks": ["Organize and tidy the items on the table."], "length": 1124}
69
+ {"episode_index": 68, "tasks": ["Organize and tidy the items on the table."], "length": 1509}
70
+ {"episode_index": 69, "tasks": ["Organize and tidy the items on the table."], "length": 1212}
71
+ {"episode_index": 70, "tasks": ["Organize and tidy the items on the table."], "length": 1417}
72
+ {"episode_index": 71, "tasks": ["Organize and tidy the items on the table."], "length": 1362}
73
+ {"episode_index": 72, "tasks": ["Organize and tidy the items on the table."], "length": 1078}
74
+ {"episode_index": 73, "tasks": ["Organize and tidy the items on the table."], "length": 1322}
75
+ {"episode_index": 74, "tasks": ["Organize and tidy the items on the table."], "length": 1257}
76
+ {"episode_index": 75, "tasks": ["Organize and tidy the items on the table."], "length": 1363}
77
+ {"episode_index": 76, "tasks": ["Organize and tidy the items on the table."], "length": 1089}
78
+ {"episode_index": 77, "tasks": ["Organize and tidy the items on the table."], "length": 1419}
79
+ {"episode_index": 78, "tasks": ["Organize and tidy the items on the table."], "length": 1222}
80
+ {"episode_index": 79, "tasks": ["Organize and tidy the items on the table."], "length": 1180}
81
+ {"episode_index": 80, "tasks": ["Organize and tidy the items on the table."], "length": 1495}
82
+ {"episode_index": 81, "tasks": ["Organize and tidy the items on the table."], "length": 1115}
83
+ {"episode_index": 82, "tasks": ["Organize and tidy the items on the table."], "length": 1016}
84
+ {"episode_index": 83, "tasks": ["Organize and tidy the items on the table."], "length": 1175}
85
+ {"episode_index": 84, "tasks": ["Organize and tidy the items on the table."], "length": 1004}
86
+ {"episode_index": 85, "tasks": ["Organize and tidy the items on the table."], "length": 1232}
87
+ {"episode_index": 86, "tasks": ["Organize and tidy the items on the table."], "length": 1243}
88
+ {"episode_index": 87, "tasks": ["Organize and tidy the items on the table."], "length": 1179}
89
+ {"episode_index": 88, "tasks": ["Organize and tidy the items on the table."], "length": 1648}
90
+ {"episode_index": 89, "tasks": ["Organize and tidy the items on the table."], "length": 1880}
91
+ {"episode_index": 90, "tasks": ["Organize and tidy the items on the table."], "length": 1000}
92
+ {"episode_index": 91, "tasks": ["Organize and tidy the items on the table."], "length": 1430}
93
+ {"episode_index": 92, "tasks": ["Organize and tidy the items on the table."], "length": 1665}
94
+ {"episode_index": 93, "tasks": ["Organize and tidy the items on the table."], "length": 1124}
95
+ {"episode_index": 94, "tasks": ["Organize and tidy the items on the table."], "length": 1061}
96
+ {"episode_index": 95, "tasks": ["Organize and tidy the items on the table."], "length": 1024}
97
+ {"episode_index": 96, "tasks": ["Organize and tidy the items on the table."], "length": 1560}
98
+ {"episode_index": 97, "tasks": ["Organize and tidy the items on the table."], "length": 1078}
99
+ {"episode_index": 98, "tasks": ["Organize and tidy the items on the table."], "length": 1105}
100
+ {"episode_index": 99, "tasks": ["Organize and tidy the items on the table."], "length": 1301}
101
+ {"episode_index": 100, "tasks": ["Organize and tidy the items on the table."], "length": 1016}
102
+ {"episode_index": 101, "tasks": ["Organize and tidy the items on the table."], "length": 1147}
103
+ {"episode_index": 102, "tasks": ["Organize and tidy the items on the table."], "length": 1782}
104
+ {"episode_index": 103, "tasks": ["Organize and tidy the items on the table."], "length": 1395}
105
+ {"episode_index": 104, "tasks": ["Organize and tidy the items on the table."], "length": 1163}
106
+ {"episode_index": 105, "tasks": ["Organize and tidy the items on the table."], "length": 1355}
107
+ {"episode_index": 106, "tasks": ["Organize and tidy the items on the table."], "length": 1775}
108
+ {"episode_index": 107, "tasks": ["Organize and tidy the items on the table."], "length": 1756}
109
+ {"episode_index": 108, "tasks": ["Organize and tidy the items on the table."], "length": 1144}
110
+ {"episode_index": 109, "tasks": ["Organize and tidy the items on the table."], "length": 1292}
111
+ {"episode_index": 110, "tasks": ["Organize and tidy the items on the table."], "length": 1901}
112
+ {"episode_index": 111, "tasks": ["Organize and tidy the items on the table."], "length": 1269}
113
+ {"episode_index": 112, "tasks": ["Organize and tidy the items on the table."], "length": 1227}
114
+ {"episode_index": 113, "tasks": ["Organize and tidy the items on the table."], "length": 1826}
115
+ {"episode_index": 114, "tasks": ["Organize and tidy the items on the table."], "length": 1483}
116
+ {"episode_index": 115, "tasks": ["Organize and tidy the items on the table."], "length": 1112}
117
+ {"episode_index": 116, "tasks": ["Organize and tidy the items on the table."], "length": 1124}
118
+ {"episode_index": 117, "tasks": ["Organize and tidy the items on the table."], "length": 1683}
119
+ {"episode_index": 118, "tasks": ["Organize and tidy the items on the table."], "length": 1395}
120
+ {"episode_index": 119, "tasks": ["Organize and tidy the items on the table."], "length": 1676}
121
+ {"episode_index": 120, "tasks": ["Organize and tidy the items on the table."], "length": 1146}
122
+ {"episode_index": 121, "tasks": ["Organize and tidy the items on the table."], "length": 1375}
123
+ {"episode_index": 122, "tasks": ["Organize and tidy the items on the table."], "length": 1112}
124
+ {"episode_index": 123, "tasks": ["Organize and tidy the items on the table."], "length": 1463}
125
+ {"episode_index": 124, "tasks": ["Organize and tidy the items on the table."], "length": 1708}
126
+ {"episode_index": 125, "tasks": ["Organize and tidy the items on the table."], "length": 1354}
127
+ {"episode_index": 126, "tasks": ["Organize and tidy the items on the table."], "length": 1125}
128
+ {"episode_index": 127, "tasks": ["Organize and tidy the items on the table."], "length": 1193}
129
+ {"episode_index": 128, "tasks": ["Organize and tidy the items on the table."], "length": 1788}
130
+ {"episode_index": 129, "tasks": ["Organize and tidy the items on the table."], "length": 1651}
131
+ {"episode_index": 130, "tasks": ["Organize and tidy the items on the table."], "length": 1696}
132
+ {"episode_index": 131, "tasks": ["Organize and tidy the items on the table."], "length": 1522}
133
+ {"episode_index": 132, "tasks": ["Organize and tidy the items on the table."], "length": 1319}
134
+ {"episode_index": 133, "tasks": ["Organize and tidy the items on the table."], "length": 1744}
135
+ {"episode_index": 134, "tasks": ["Organize and tidy the items on the table."], "length": 1678}
136
+ {"episode_index": 135, "tasks": ["Organize and tidy the items on the table."], "length": 1076}
137
+ {"episode_index": 136, "tasks": ["Organize and tidy the items on the table."], "length": 1843}
138
+ {"episode_index": 137, "tasks": ["Organize and tidy the items on the table."], "length": 1249}
139
+ {"episode_index": 138, "tasks": ["Organize and tidy the items on the table."], "length": 1589}
140
+ {"episode_index": 139, "tasks": ["Organize and tidy the items on the table."], "length": 1323}
141
+ {"episode_index": 140, "tasks": ["Organize and tidy the items on the table."], "length": 1512}
142
+ {"episode_index": 141, "tasks": ["Organize and tidy the items on the table."], "length": 1170}
143
+ {"episode_index": 142, "tasks": ["Organize and tidy the items on the table."], "length": 1612}
144
+ {"episode_index": 143, "tasks": ["Organize and tidy the items on the table."], "length": 1106}
145
+ {"episode_index": 144, "tasks": ["Organize and tidy the items on the table."], "length": 1286}
146
+ {"episode_index": 145, "tasks": ["Organize and tidy the items on the table."], "length": 1097}
147
+ {"episode_index": 146, "tasks": ["Organize and tidy the items on the table."], "length": 1396}
148
+ {"episode_index": 147, "tasks": ["Organize and tidy the items on the table."], "length": 1137}
149
+ {"episode_index": 148, "tasks": ["Organize and tidy the items on the table."], "length": 1082}
150
+ {"episode_index": 149, "tasks": ["Organize and tidy the items on the table."], "length": 1243}
151
+ {"episode_index": 150, "tasks": ["Organize and tidy the items on the table."], "length": 1649}
152
+ {"episode_index": 151, "tasks": ["Organize and tidy the items on the table."], "length": 1522}
153
+ {"episode_index": 152, "tasks": ["Organize and tidy the items on the table."], "length": 1689}
154
+ {"episode_index": 153, "tasks": ["Organize and tidy the items on the table."], "length": 1005}
155
+ {"episode_index": 154, "tasks": ["Organize and tidy the items on the table."], "length": 1111}
156
+ {"episode_index": 155, "tasks": ["Organize and tidy the items on the table."], "length": 1431}
157
+ {"episode_index": 156, "tasks": ["Organize and tidy the items on the table."], "length": 1305}
158
+ {"episode_index": 157, "tasks": ["Organize and tidy the items on the table."], "length": 1215}
159
+ {"episode_index": 158, "tasks": ["Organize and tidy the items on the table."], "length": 1017}
160
+ {"episode_index": 159, "tasks": ["Organize and tidy the items on the table."], "length": 1547}
161
+ {"episode_index": 160, "tasks": ["Organize and tidy the items on the table."], "length": 1555}
162
+ {"episode_index": 161, "tasks": ["Organize and tidy the items on the table."], "length": 1568}
163
+ {"episode_index": 162, "tasks": ["Organize and tidy the items on the table."], "length": 1069}
164
+ {"episode_index": 163, "tasks": ["Organize and tidy the items on the table."], "length": 1317}
165
+ {"episode_index": 164, "tasks": ["Organize and tidy the items on the table."], "length": 1271}
166
+ {"episode_index": 165, "tasks": ["Organize and tidy the items on the table."], "length": 1448}
167
+ {"episode_index": 166, "tasks": ["Organize and tidy the items on the table."], "length": 1152}
168
+ {"episode_index": 167, "tasks": ["Organize and tidy the items on the table."], "length": 1357}
169
+ {"episode_index": 168, "tasks": ["Organize and tidy the items on the table."], "length": 1181}
170
+ {"episode_index": 169, "tasks": ["Organize and tidy the items on the table."], "length": 1081}
171
+ {"episode_index": 170, "tasks": ["Organize and tidy the items on the table."], "length": 1042}
172
+ {"episode_index": 171, "tasks": ["Organize and tidy the items on the table."], "length": 1768}
173
+ {"episode_index": 172, "tasks": ["Organize and tidy the items on the table."], "length": 1315}
174
+ {"episode_index": 173, "tasks": ["Organize and tidy the items on the table."], "length": 1307}
175
+ {"episode_index": 174, "tasks": ["Organize and tidy the items on the table."], "length": 1358}
176
+ {"episode_index": 175, "tasks": ["Organize and tidy the items on the table."], "length": 1309}
177
+ {"episode_index": 176, "tasks": ["Organize and tidy the items on the table."], "length": 1055}
178
+ {"episode_index": 177, "tasks": ["Organize and tidy the items on the table."], "length": 1356}
179
+ {"episode_index": 178, "tasks": ["Organize and tidy the items on the table."], "length": 1079}
180
+ {"episode_index": 179, "tasks": ["Organize and tidy the items on the table."], "length": 1521}
181
+ {"episode_index": 180, "tasks": ["Organize and tidy the items on the table."], "length": 1133}
182
+ {"episode_index": 181, "tasks": ["Organize and tidy the items on the table."], "length": 1173}
183
+ {"episode_index": 182, "tasks": ["Organize and tidy the items on the table."], "length": 1107}
184
+ {"episode_index": 183, "tasks": ["Organize and tidy the items on the table."], "length": 1539}
185
+ {"episode_index": 184, "tasks": ["Organize and tidy the items on the table."], "length": 1466}
186
+ {"episode_index": 185, "tasks": ["Organize and tidy the items on the table."], "length": 1157}
187
+ {"episode_index": 186, "tasks": ["Organize and tidy the items on the table."], "length": 1093}
188
+ {"episode_index": 187, "tasks": ["Organize and tidy the items on the table."], "length": 1258}
189
+ {"episode_index": 188, "tasks": ["Organize and tidy the items on the table."], "length": 1497}
190
+ {"episode_index": 189, "tasks": ["Organize and tidy the items on the table."], "length": 1047}
191
+ {"episode_index": 190, "tasks": ["Organize and tidy the items on the table."], "length": 1170}
192
+ {"episode_index": 191, "tasks": ["Organize and tidy the items on the table."], "length": 1631}
193
+ {"episode_index": 192, "tasks": ["Organize and tidy the items on the table."], "length": 1174}
194
+ {"episode_index": 193, "tasks": ["Organize and tidy the items on the table."], "length": 1435}
195
+ {"episode_index": 194, "tasks": ["Organize and tidy the items on the table."], "length": 1191}
196
+ {"episode_index": 195, "tasks": ["Organize and tidy the items on the table."], "length": 1190}
197
+ {"episode_index": 196, "tasks": ["Organize and tidy the items on the table."], "length": 1671}
198
+ {"episode_index": 197, "tasks": ["Organize and tidy the items on the table."], "length": 1434}
199
+ {"episode_index": 198, "tasks": ["Organize and tidy the items on the table."], "length": 1194}
200
+ {"episode_index": 199, "tasks": ["Organize and tidy the items on the table."], "length": 1342}
meta/episodes_stats.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
meta/info.json ADDED
@@ -0,0 +1,956 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v2.1",
3
+ "robot_type": "G1_ALL",
4
+ "total_episodes": 200,
5
+ "total_frames": 265701,
6
+ "total_tasks": 1,
7
+ "total_videos": 800,
8
+ "total_chunks": 1,
9
+ "chunks_size": 1000,
10
+ "fps": 30,
11
+ "splits": {
12
+ "train": "0:200"
13
+ },
14
+ "data_path": "data/unitreerobotics_G1_Dex1_Clean_Table.tsfile",
15
+ "features": {
16
+ "Time": {
17
+ "dtype": "int64",
18
+ "shape": [
19
+ 1
20
+ ],
21
+ "tsfile_role": "TIME",
22
+ "unit": "ms"
23
+ },
24
+ "episode_index": {
25
+ "dtype": "int64",
26
+ "shape": [
27
+ 1
28
+ ],
29
+ "tsfile_role": "TAG"
30
+ },
31
+ "task_index": {
32
+ "dtype": "int64",
33
+ "shape": [
34
+ 1
35
+ ],
36
+ "tsfile_role": "TAG"
37
+ },
38
+ "frame_index": {
39
+ "dtype": "int64",
40
+ "shape": [
41
+ 1
42
+ ],
43
+ "tsfile_role": "FIELD"
44
+ },
45
+ "sample_index": {
46
+ "dtype": "int64",
47
+ "shape": [
48
+ 1
49
+ ],
50
+ "tsfile_role": "FIELD"
51
+ },
52
+ "observation_left_gripper": {
53
+ "dtype": "float32",
54
+ "shape": [
55
+ 1
56
+ ],
57
+ "tsfile_role": "FIELD"
58
+ },
59
+ "observation_right_gripper": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 1
63
+ ],
64
+ "tsfile_role": "FIELD"
65
+ },
66
+ "action_left_gripper": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 1
70
+ ],
71
+ "tsfile_role": "FIELD"
72
+ },
73
+ "action_right_gripper": {
74
+ "dtype": "float32",
75
+ "shape": [
76
+ 1
77
+ ],
78
+ "tsfile_role": "FIELD"
79
+ },
80
+ "observation_left_arm_0": {
81
+ "dtype": "float32",
82
+ "shape": [
83
+ 1
84
+ ],
85
+ "tsfile_role": "FIELD"
86
+ },
87
+ "observation_left_arm_1": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "tsfile_role": "FIELD"
93
+ },
94
+ "observation_left_arm_2": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "tsfile_role": "FIELD"
100
+ },
101
+ "observation_left_arm_3": {
102
+ "dtype": "float32",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "tsfile_role": "FIELD"
107
+ },
108
+ "observation_left_arm_4": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "tsfile_role": "FIELD"
114
+ },
115
+ "observation_left_arm_5": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "tsfile_role": "FIELD"
121
+ },
122
+ "observation_left_arm_6": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "tsfile_role": "FIELD"
128
+ },
129
+ "observation_right_arm_0": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "tsfile_role": "FIELD"
135
+ },
136
+ "observation_right_arm_1": {
137
+ "dtype": "float32",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "tsfile_role": "FIELD"
142
+ },
143
+ "observation_right_arm_2": {
144
+ "dtype": "float32",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "tsfile_role": "FIELD"
149
+ },
150
+ "observation_right_arm_3": {
151
+ "dtype": "float32",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "tsfile_role": "FIELD"
156
+ },
157
+ "observation_right_arm_4": {
158
+ "dtype": "float32",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "tsfile_role": "FIELD"
163
+ },
164
+ "observation_right_arm_5": {
165
+ "dtype": "float32",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "tsfile_role": "FIELD"
170
+ },
171
+ "observation_right_arm_6": {
172
+ "dtype": "float32",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "tsfile_role": "FIELD"
177
+ },
178
+ "observation_left_ee_0": {
179
+ "dtype": "float32",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "tsfile_role": "FIELD"
184
+ },
185
+ "observation_left_ee_1": {
186
+ "dtype": "float32",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "tsfile_role": "FIELD"
191
+ },
192
+ "observation_left_ee_2": {
193
+ "dtype": "float32",
194
+ "shape": [
195
+ 1
196
+ ],
197
+ "tsfile_role": "FIELD"
198
+ },
199
+ "observation_left_ee_3": {
200
+ "dtype": "float32",
201
+ "shape": [
202
+ 1
203
+ ],
204
+ "tsfile_role": "FIELD"
205
+ },
206
+ "observation_left_ee_4": {
207
+ "dtype": "float32",
208
+ "shape": [
209
+ 1
210
+ ],
211
+ "tsfile_role": "FIELD"
212
+ },
213
+ "observation_left_ee_5": {
214
+ "dtype": "float32",
215
+ "shape": [
216
+ 1
217
+ ],
218
+ "tsfile_role": "FIELD"
219
+ },
220
+ "observation_right_ee_0": {
221
+ "dtype": "float32",
222
+ "shape": [
223
+ 1
224
+ ],
225
+ "tsfile_role": "FIELD"
226
+ },
227
+ "observation_right_ee_1": {
228
+ "dtype": "float32",
229
+ "shape": [
230
+ 1
231
+ ],
232
+ "tsfile_role": "FIELD"
233
+ },
234
+ "observation_right_ee_2": {
235
+ "dtype": "float32",
236
+ "shape": [
237
+ 1
238
+ ],
239
+ "tsfile_role": "FIELD"
240
+ },
241
+ "observation_right_ee_3": {
242
+ "dtype": "float32",
243
+ "shape": [
244
+ 1
245
+ ],
246
+ "tsfile_role": "FIELD"
247
+ },
248
+ "observation_right_ee_4": {
249
+ "dtype": "float32",
250
+ "shape": [
251
+ 1
252
+ ],
253
+ "tsfile_role": "FIELD"
254
+ },
255
+ "observation_right_ee_5": {
256
+ "dtype": "float32",
257
+ "shape": [
258
+ 1
259
+ ],
260
+ "tsfile_role": "FIELD"
261
+ },
262
+ "observation_body_0": {
263
+ "dtype": "float32",
264
+ "shape": [
265
+ 1
266
+ ],
267
+ "tsfile_role": "FIELD"
268
+ },
269
+ "observation_body_1": {
270
+ "dtype": "float32",
271
+ "shape": [
272
+ 1
273
+ ],
274
+ "tsfile_role": "FIELD"
275
+ },
276
+ "observation_body_2": {
277
+ "dtype": "float32",
278
+ "shape": [
279
+ 1
280
+ ],
281
+ "tsfile_role": "FIELD"
282
+ },
283
+ "observation_body_3": {
284
+ "dtype": "float32",
285
+ "shape": [
286
+ 1
287
+ ],
288
+ "tsfile_role": "FIELD"
289
+ },
290
+ "observation_body_4": {
291
+ "dtype": "float32",
292
+ "shape": [
293
+ 1
294
+ ],
295
+ "tsfile_role": "FIELD"
296
+ },
297
+ "observation_body_5": {
298
+ "dtype": "float32",
299
+ "shape": [
300
+ 1
301
+ ],
302
+ "tsfile_role": "FIELD"
303
+ },
304
+ "observation_body_6": {
305
+ "dtype": "float32",
306
+ "shape": [
307
+ 1
308
+ ],
309
+ "tsfile_role": "FIELD"
310
+ },
311
+ "observation_body_7": {
312
+ "dtype": "float32",
313
+ "shape": [
314
+ 1
315
+ ],
316
+ "tsfile_role": "FIELD"
317
+ },
318
+ "observation_body_8": {
319
+ "dtype": "float32",
320
+ "shape": [
321
+ 1
322
+ ],
323
+ "tsfile_role": "FIELD"
324
+ },
325
+ "observation_body_9": {
326
+ "dtype": "float32",
327
+ "shape": [
328
+ 1
329
+ ],
330
+ "tsfile_role": "FIELD"
331
+ },
332
+ "observation_body_10": {
333
+ "dtype": "float32",
334
+ "shape": [
335
+ 1
336
+ ],
337
+ "tsfile_role": "FIELD"
338
+ },
339
+ "observation_body_11": {
340
+ "dtype": "float32",
341
+ "shape": [
342
+ 1
343
+ ],
344
+ "tsfile_role": "FIELD"
345
+ },
346
+ "observation_body_12": {
347
+ "dtype": "float32",
348
+ "shape": [
349
+ 1
350
+ ],
351
+ "tsfile_role": "FIELD"
352
+ },
353
+ "observation_body_13": {
354
+ "dtype": "float32",
355
+ "shape": [
356
+ 1
357
+ ],
358
+ "tsfile_role": "FIELD"
359
+ },
360
+ "observation_body_14": {
361
+ "dtype": "float32",
362
+ "shape": [
363
+ 1
364
+ ],
365
+ "tsfile_role": "FIELD"
366
+ },
367
+ "observation_body_15": {
368
+ "dtype": "float32",
369
+ "shape": [
370
+ 1
371
+ ],
372
+ "tsfile_role": "FIELD"
373
+ },
374
+ "observation_body_16": {
375
+ "dtype": "float32",
376
+ "shape": [
377
+ 1
378
+ ],
379
+ "tsfile_role": "FIELD"
380
+ },
381
+ "observation_body_17": {
382
+ "dtype": "float32",
383
+ "shape": [
384
+ 1
385
+ ],
386
+ "tsfile_role": "FIELD"
387
+ },
388
+ "observation_body_18": {
389
+ "dtype": "float32",
390
+ "shape": [
391
+ 1
392
+ ],
393
+ "tsfile_role": "FIELD"
394
+ },
395
+ "observation_body_19": {
396
+ "dtype": "float32",
397
+ "shape": [
398
+ 1
399
+ ],
400
+ "tsfile_role": "FIELD"
401
+ },
402
+ "observation_body_20": {
403
+ "dtype": "float32",
404
+ "shape": [
405
+ 1
406
+ ],
407
+ "tsfile_role": "FIELD"
408
+ },
409
+ "observation_body_21": {
410
+ "dtype": "float32",
411
+ "shape": [
412
+ 1
413
+ ],
414
+ "tsfile_role": "FIELD"
415
+ },
416
+ "observation_body_22": {
417
+ "dtype": "float32",
418
+ "shape": [
419
+ 1
420
+ ],
421
+ "tsfile_role": "FIELD"
422
+ },
423
+ "observation_body_23": {
424
+ "dtype": "float32",
425
+ "shape": [
426
+ 1
427
+ ],
428
+ "tsfile_role": "FIELD"
429
+ },
430
+ "observation_body_24": {
431
+ "dtype": "float32",
432
+ "shape": [
433
+ 1
434
+ ],
435
+ "tsfile_role": "FIELD"
436
+ },
437
+ "observation_body_25": {
438
+ "dtype": "float32",
439
+ "shape": [
440
+ 1
441
+ ],
442
+ "tsfile_role": "FIELD"
443
+ },
444
+ "observation_body_26": {
445
+ "dtype": "float32",
446
+ "shape": [
447
+ 1
448
+ ],
449
+ "tsfile_role": "FIELD"
450
+ },
451
+ "observation_body_27": {
452
+ "dtype": "float32",
453
+ "shape": [
454
+ 1
455
+ ],
456
+ "tsfile_role": "FIELD"
457
+ },
458
+ "observation_body_28": {
459
+ "dtype": "float32",
460
+ "shape": [
461
+ 1
462
+ ],
463
+ "tsfile_role": "FIELD"
464
+ },
465
+ "action_left_arm_0": {
466
+ "dtype": "float32",
467
+ "shape": [
468
+ 1
469
+ ],
470
+ "tsfile_role": "FIELD"
471
+ },
472
+ "action_left_arm_1": {
473
+ "dtype": "float32",
474
+ "shape": [
475
+ 1
476
+ ],
477
+ "tsfile_role": "FIELD"
478
+ },
479
+ "action_left_arm_2": {
480
+ "dtype": "float32",
481
+ "shape": [
482
+ 1
483
+ ],
484
+ "tsfile_role": "FIELD"
485
+ },
486
+ "action_left_arm_3": {
487
+ "dtype": "float32",
488
+ "shape": [
489
+ 1
490
+ ],
491
+ "tsfile_role": "FIELD"
492
+ },
493
+ "action_left_arm_4": {
494
+ "dtype": "float32",
495
+ "shape": [
496
+ 1
497
+ ],
498
+ "tsfile_role": "FIELD"
499
+ },
500
+ "action_left_arm_5": {
501
+ "dtype": "float32",
502
+ "shape": [
503
+ 1
504
+ ],
505
+ "tsfile_role": "FIELD"
506
+ },
507
+ "action_left_arm_6": {
508
+ "dtype": "float32",
509
+ "shape": [
510
+ 1
511
+ ],
512
+ "tsfile_role": "FIELD"
513
+ },
514
+ "action_right_arm_0": {
515
+ "dtype": "float32",
516
+ "shape": [
517
+ 1
518
+ ],
519
+ "tsfile_role": "FIELD"
520
+ },
521
+ "action_right_arm_1": {
522
+ "dtype": "float32",
523
+ "shape": [
524
+ 1
525
+ ],
526
+ "tsfile_role": "FIELD"
527
+ },
528
+ "action_right_arm_2": {
529
+ "dtype": "float32",
530
+ "shape": [
531
+ 1
532
+ ],
533
+ "tsfile_role": "FIELD"
534
+ },
535
+ "action_right_arm_3": {
536
+ "dtype": "float32",
537
+ "shape": [
538
+ 1
539
+ ],
540
+ "tsfile_role": "FIELD"
541
+ },
542
+ "action_right_arm_4": {
543
+ "dtype": "float32",
544
+ "shape": [
545
+ 1
546
+ ],
547
+ "tsfile_role": "FIELD"
548
+ },
549
+ "action_right_arm_5": {
550
+ "dtype": "float32",
551
+ "shape": [
552
+ 1
553
+ ],
554
+ "tsfile_role": "FIELD"
555
+ },
556
+ "action_right_arm_6": {
557
+ "dtype": "float32",
558
+ "shape": [
559
+ 1
560
+ ],
561
+ "tsfile_role": "FIELD"
562
+ },
563
+ "action_left_ee_0": {
564
+ "dtype": "float32",
565
+ "shape": [
566
+ 1
567
+ ],
568
+ "tsfile_role": "FIELD"
569
+ },
570
+ "action_left_ee_1": {
571
+ "dtype": "float32",
572
+ "shape": [
573
+ 1
574
+ ],
575
+ "tsfile_role": "FIELD"
576
+ },
577
+ "action_left_ee_2": {
578
+ "dtype": "float32",
579
+ "shape": [
580
+ 1
581
+ ],
582
+ "tsfile_role": "FIELD"
583
+ },
584
+ "action_left_ee_3": {
585
+ "dtype": "float32",
586
+ "shape": [
587
+ 1
588
+ ],
589
+ "tsfile_role": "FIELD"
590
+ },
591
+ "action_left_ee_4": {
592
+ "dtype": "float32",
593
+ "shape": [
594
+ 1
595
+ ],
596
+ "tsfile_role": "FIELD"
597
+ },
598
+ "action_left_ee_5": {
599
+ "dtype": "float32",
600
+ "shape": [
601
+ 1
602
+ ],
603
+ "tsfile_role": "FIELD"
604
+ },
605
+ "action_right_ee_0": {
606
+ "dtype": "float32",
607
+ "shape": [
608
+ 1
609
+ ],
610
+ "tsfile_role": "FIELD"
611
+ },
612
+ "action_right_ee_1": {
613
+ "dtype": "float32",
614
+ "shape": [
615
+ 1
616
+ ],
617
+ "tsfile_role": "FIELD"
618
+ },
619
+ "action_right_ee_2": {
620
+ "dtype": "float32",
621
+ "shape": [
622
+ 1
623
+ ],
624
+ "tsfile_role": "FIELD"
625
+ },
626
+ "action_right_ee_3": {
627
+ "dtype": "float32",
628
+ "shape": [
629
+ 1
630
+ ],
631
+ "tsfile_role": "FIELD"
632
+ },
633
+ "action_right_ee_4": {
634
+ "dtype": "float32",
635
+ "shape": [
636
+ 1
637
+ ],
638
+ "tsfile_role": "FIELD"
639
+ },
640
+ "action_right_ee_5": {
641
+ "dtype": "float32",
642
+ "shape": [
643
+ 1
644
+ ],
645
+ "tsfile_role": "FIELD"
646
+ },
647
+ "action_body_0": {
648
+ "dtype": "float32",
649
+ "shape": [
650
+ 1
651
+ ],
652
+ "tsfile_role": "FIELD"
653
+ },
654
+ "action_body_1": {
655
+ "dtype": "float32",
656
+ "shape": [
657
+ 1
658
+ ],
659
+ "tsfile_role": "FIELD"
660
+ },
661
+ "action_body_2": {
662
+ "dtype": "float32",
663
+ "shape": [
664
+ 1
665
+ ],
666
+ "tsfile_role": "FIELD"
667
+ },
668
+ "action_body_3": {
669
+ "dtype": "float32",
670
+ "shape": [
671
+ 1
672
+ ],
673
+ "tsfile_role": "FIELD"
674
+ },
675
+ "action_body_4": {
676
+ "dtype": "float32",
677
+ "shape": [
678
+ 1
679
+ ],
680
+ "tsfile_role": "FIELD"
681
+ },
682
+ "action_body_5": {
683
+ "dtype": "float32",
684
+ "shape": [
685
+ 1
686
+ ],
687
+ "tsfile_role": "FIELD"
688
+ },
689
+ "action_body_6": {
690
+ "dtype": "float32",
691
+ "shape": [
692
+ 1
693
+ ],
694
+ "tsfile_role": "FIELD"
695
+ }
696
+ },
697
+ "video_path_original": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
698
+ "tsfile_conversion": {
699
+ "source_dataset": "unitreerobotics/G1_Dex1_Clean_Table",
700
+ "source_data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
701
+ "converted_data_path": "data/unitreerobotics_G1_Dex1_Clean_Table.tsfile",
702
+ "table_name": "unitreerobotics_G1_Dex1_Clean_Table",
703
+ "granularity": "merged",
704
+ "time_precision": "ms",
705
+ "time_mapping": {
706
+ "source": "timestamp",
707
+ "fps": 30,
708
+ "unit": "milliseconds"
709
+ },
710
+ "tag_columns": [
711
+ "episode_index",
712
+ "task_index"
713
+ ],
714
+ "row_count": 265701,
715
+ "feature_source": "features describe the converted TsFile schema",
716
+ "flattened_features": {
717
+ "observation.left_arm": [
718
+ "observation_left_arm_0",
719
+ "observation_left_arm_1",
720
+ "observation_left_arm_2",
721
+ "observation_left_arm_3",
722
+ "observation_left_arm_4",
723
+ "observation_left_arm_5",
724
+ "observation_left_arm_6"
725
+ ],
726
+ "observation.right_arm": [
727
+ "observation_right_arm_0",
728
+ "observation_right_arm_1",
729
+ "observation_right_arm_2",
730
+ "observation_right_arm_3",
731
+ "observation_right_arm_4",
732
+ "observation_right_arm_5",
733
+ "observation_right_arm_6"
734
+ ],
735
+ "observation.left_ee": [
736
+ "observation_left_ee_0",
737
+ "observation_left_ee_1",
738
+ "observation_left_ee_2",
739
+ "observation_left_ee_3",
740
+ "observation_left_ee_4",
741
+ "observation_left_ee_5"
742
+ ],
743
+ "observation.right_ee": [
744
+ "observation_right_ee_0",
745
+ "observation_right_ee_1",
746
+ "observation_right_ee_2",
747
+ "observation_right_ee_3",
748
+ "observation_right_ee_4",
749
+ "observation_right_ee_5"
750
+ ],
751
+ "observation.body": [
752
+ "observation_body_0",
753
+ "observation_body_1",
754
+ "observation_body_2",
755
+ "observation_body_3",
756
+ "observation_body_4",
757
+ "observation_body_5",
758
+ "observation_body_6",
759
+ "observation_body_7",
760
+ "observation_body_8",
761
+ "observation_body_9",
762
+ "observation_body_10",
763
+ "observation_body_11",
764
+ "observation_body_12",
765
+ "observation_body_13",
766
+ "observation_body_14",
767
+ "observation_body_15",
768
+ "observation_body_16",
769
+ "observation_body_17",
770
+ "observation_body_18",
771
+ "observation_body_19",
772
+ "observation_body_20",
773
+ "observation_body_21",
774
+ "observation_body_22",
775
+ "observation_body_23",
776
+ "observation_body_24",
777
+ "observation_body_25",
778
+ "observation_body_26",
779
+ "observation_body_27",
780
+ "observation_body_28"
781
+ ],
782
+ "action.left_arm": [
783
+ "action_left_arm_0",
784
+ "action_left_arm_1",
785
+ "action_left_arm_2",
786
+ "action_left_arm_3",
787
+ "action_left_arm_4",
788
+ "action_left_arm_5",
789
+ "action_left_arm_6"
790
+ ],
791
+ "action.right_arm": [
792
+ "action_right_arm_0",
793
+ "action_right_arm_1",
794
+ "action_right_arm_2",
795
+ "action_right_arm_3",
796
+ "action_right_arm_4",
797
+ "action_right_arm_5",
798
+ "action_right_arm_6"
799
+ ],
800
+ "action.left_ee": [
801
+ "action_left_ee_0",
802
+ "action_left_ee_1",
803
+ "action_left_ee_2",
804
+ "action_left_ee_3",
805
+ "action_left_ee_4",
806
+ "action_left_ee_5"
807
+ ],
808
+ "action.right_ee": [
809
+ "action_right_ee_0",
810
+ "action_right_ee_1",
811
+ "action_right_ee_2",
812
+ "action_right_ee_3",
813
+ "action_right_ee_4",
814
+ "action_right_ee_5"
815
+ ],
816
+ "action.body": [
817
+ "action_body_0",
818
+ "action_body_1",
819
+ "action_body_2",
820
+ "action_body_3",
821
+ "action_body_4",
822
+ "action_body_5",
823
+ "action_body_6"
824
+ ]
825
+ },
826
+ "renamed_features": {
827
+ "observation.left_gripper": "observation_left_gripper",
828
+ "observation.right_gripper": "observation_right_gripper",
829
+ "action.left_gripper": "action_left_gripper",
830
+ "action.right_gripper": "action_right_gripper",
831
+ "index": "sample_index"
832
+ },
833
+ "dropped_features": [
834
+ "timestamp"
835
+ ],
836
+ "omitted_features": [
837
+ "observation.images.cam_left_high",
838
+ "observation.images.cam_right_high",
839
+ "observation.images.cam_left_wrist",
840
+ "observation.images.cam_right_wrist"
841
+ ],
842
+ "original_video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
843
+ "original_video_features": {
844
+ "observation.images.cam_left_high": {
845
+ "dtype": "video",
846
+ "shape": [
847
+ 480,
848
+ 640,
849
+ 3
850
+ ],
851
+ "names": [
852
+ "height",
853
+ "width",
854
+ "channel"
855
+ ],
856
+ "info": {
857
+ "video.height": 480,
858
+ "video.width": 640,
859
+ "video.codec": "av1",
860
+ "video.pix_fmt": "yuv420p",
861
+ "video.is_depth_map": false,
862
+ "video.fps": 30,
863
+ "video.channels": 3,
864
+ "has_audio": false
865
+ }
866
+ },
867
+ "observation.images.cam_right_high": {
868
+ "dtype": "video",
869
+ "shape": [
870
+ 480,
871
+ 640,
872
+ 3
873
+ ],
874
+ "names": [
875
+ "height",
876
+ "width",
877
+ "channel"
878
+ ],
879
+ "info": {
880
+ "video.height": 480,
881
+ "video.width": 640,
882
+ "video.codec": "av1",
883
+ "video.pix_fmt": "yuv420p",
884
+ "video.is_depth_map": false,
885
+ "video.fps": 30,
886
+ "video.channels": 3,
887
+ "has_audio": false
888
+ }
889
+ },
890
+ "observation.images.cam_left_wrist": {
891
+ "dtype": "video",
892
+ "shape": [
893
+ 480,
894
+ 640,
895
+ 3
896
+ ],
897
+ "names": [
898
+ "height",
899
+ "width",
900
+ "channel"
901
+ ],
902
+ "info": {
903
+ "video.height": 480,
904
+ "video.width": 640,
905
+ "video.codec": "av1",
906
+ "video.pix_fmt": "yuv420p",
907
+ "video.is_depth_map": false,
908
+ "video.fps": 30,
909
+ "video.channels": 3,
910
+ "has_audio": false
911
+ }
912
+ },
913
+ "observation.images.cam_right_wrist": {
914
+ "dtype": "video",
915
+ "shape": [
916
+ 480,
917
+ 640,
918
+ 3
919
+ ],
920
+ "names": [
921
+ "height",
922
+ "width",
923
+ "channel"
924
+ ],
925
+ "info": {
926
+ "video.height": 480,
927
+ "video.width": 640,
928
+ "video.codec": "av1",
929
+ "video.pix_fmt": "yuv420p",
930
+ "video.is_depth_map": false,
931
+ "video.fps": 30,
932
+ "video.channels": 3,
933
+ "has_audio": false
934
+ }
935
+ }
936
+ },
937
+ "original_video_source": "https://huggingface.co/datasets/unitreerobotics/G1_Dex1_Clean_Table/tree/main/videos",
938
+ "video_policy": "Videos are not uploaded to this repository; use the original HuggingFace dataset videos.",
939
+ "video_streams": [
940
+ "observation.images.cam_left_high",
941
+ "observation.images.cam_right_high",
942
+ "observation.images.cam_left_wrist",
943
+ "observation.images.cam_right_wrist"
944
+ ],
945
+ "original_authors": ["Unitree Robotics", "wangcong", "wangcong627"],
946
+ "codec_profile": {
947
+ "float": "GORILLA",
948
+ "double": "GORILLA",
949
+ "int32": "TS_2DIFF",
950
+ "int64": "TS_2DIFF",
951
+ "time": "TS_2DIFF",
952
+ "boolean": "RLE",
953
+ "compression": "LZ4"
954
+ }
955
+ }
956
+ }
meta/tasks.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"task_index": 0, "task": "Organize and tidy the items on the table."}