Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
b6c4157
·
verified ·
1 Parent(s): f449235

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +142 -50
README.md CHANGED
@@ -1,16 +1,30 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
 
 
 
6
  ---
 
7
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
8
 
9
- [meta/info.json](meta/info.json)
 
 
 
 
 
 
 
 
 
 
10
  ```json
11
  {
12
  "codebase_version": "v2.0",
13
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
14
  "robot_type": "unknown",
15
  "total_episodes": 1003,
16
  "total_frames": 325699,
@@ -22,56 +36,134 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:1003"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.images.image"
31
- ],
32
- "image_keys": [],
33
- "shapes": {
34
- "observation.state": 8,
35
- "action": 7,
36
- "observation.images.image": {
37
- "width": 640,
38
- "height": 480,
39
- "channels": 3
40
- }
41
- },
42
- "names": {
43
- "observation.state": [
44
- "motor_0",
45
- "motor_1",
46
- "motor_2",
47
- "motor_3",
48
- "motor_4",
49
- "motor_5",
50
- "motor_6",
51
- "motor_7"
52
- ],
53
- "action": [
54
- "motor_0",
55
- "motor_1",
56
- "motor_2",
57
- "motor_3",
58
- "motor_4",
59
- "motor_5",
60
- "motor_6"
61
- ]
62
- },
63
- "videos": {
64
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
65
  "observation.images.image": {
66
- "video.fps": 30.0,
67
- "video.width": 640,
68
- "video.height": 480,
69
- "video.channels": 3,
70
- "video.codec": "av1",
71
- "video.pix_fmt": "yuv420p",
72
- "video.is_depth_map": false,
73
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
  }
76
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  ```
 
1
  ---
2
+ license: mit
3
  task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
  ---
11
+
12
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
 
14
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** https://toto-benchmark.org/
19
+ - **Paper:** https://arxiv.org/abs/2306.00942
20
+ - **License:** mit
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
  "codebase_version": "v2.0",
 
28
  "robot_type": "unknown",
29
  "total_episodes": 1003,
30
  "total_frames": 325699,
 
36
  "splits": {
37
  "train": "0:1003"
38
  },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  "observation.images.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 480,
46
+ 640,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 30.0,
56
+ "video.codec": "av1",
57
+ "video.pix_fmt": "yuv420p",
58
+ "video.is_depth_map": false,
59
+ "has_audio": false
60
+ }
61
+ },
62
+ "language_instruction": {
63
+ "dtype": "string",
64
+ "shape": [
65
+ 1
66
+ ],
67
+ "names": null
68
+ },
69
+ "observation.state": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 8
73
+ ],
74
+ "names": {
75
+ "motors": [
76
+ "motor_0",
77
+ "motor_1",
78
+ "motor_2",
79
+ "motor_3",
80
+ "motor_4",
81
+ "motor_5",
82
+ "motor_6",
83
+ "motor_7"
84
+ ]
85
+ }
86
+ },
87
+ "action": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 7
91
+ ],
92
+ "names": {
93
+ "motors": [
94
+ "motor_0",
95
+ "motor_1",
96
+ "motor_2",
97
+ "motor_3",
98
+ "motor_4",
99
+ "motor_5",
100
+ "motor_6"
101
+ ]
102
+ }
103
+ },
104
+ "timestamp": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "episode_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "frame_index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "next.reward": {
126
+ "dtype": "float32",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "next.done": {
133
+ "dtype": "bool",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ },
146
+ "task_index": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
  }
153
  }
154
  }
155
+ ```
156
+
157
+
158
+ ## Citation
159
+
160
+ **BibTeX:**
161
+
162
+ ```bibtex
163
+ @inproceedings{zhou2023train,
164
+ author={Zhou, Gaoyue and Dean, Victoria and Srirama, Mohan Kumar and Rajeswaran, Aravind and Pari, Jyothish and Hatch, Kyle and Jain, Aryan and Yu, Tianhe and Abbeel, Pieter and Pinto, Lerrel and Finn, Chelsea and Gupta, Abhinav},
165
+ booktitle={2023 IEEE International Conference on Robotics and Automation (ICRA)},
166
+ title={Train Offline, Test Online: A Real Robot Learning Benchmark},
167
+ year={2023},
168
+ }
169
  ```