Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
e6544cc
1 Parent(s): 4cbff93

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +150 -55
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": 50,
16
  "total_frames": 11925,
@@ -22,61 +36,142 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:50"
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": 13,
35
- "action": 7,
36
- "observation.images.image": {
37
- "width": 120,
38
- "height": 120,
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
- "motor_8",
53
- "motor_9",
54
- "motor_10",
55
- "motor_11",
56
- "motor_12"
57
- ],
58
- "action": [
59
- "motor_0",
60
- "motor_1",
61
- "motor_2",
62
- "motor_3",
63
- "motor_4",
64
- "motor_5",
65
- "motor_6"
66
- ]
67
- },
68
- "videos": {
69
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
70
  "observation.images.image": {
71
- "video.fps": 5.0,
72
- "video.width": 120,
73
- "video.height": 120,
74
- "video.channels": 3,
75
- "video.codec": "av1",
76
- "video.pix_fmt": "yuv420p",
77
- "video.is_depth_map": false,
78
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  }
80
  }
81
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  ```
 
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:** URL
19
+ - **Paper:** https://arxiv.org/abs/2107.05842
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": 50,
30
  "total_frames": 11925,
 
36
  "splits": {
37
  "train": "0:50"
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
+ 120,
46
+ 120,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 5.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
+ 13
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
+ "motor_8",
85
+ "motor_9",
86
+ "motor_10",
87
+ "motor_11",
88
+ "motor_12"
89
+ ]
90
+ }
91
+ },
92
+ "action": {
93
+ "dtype": "float32",
94
+ "shape": [
95
+ 7
96
+ ],
97
+ "names": {
98
+ "motors": [
99
+ "motor_0",
100
+ "motor_1",
101
+ "motor_2",
102
+ "motor_3",
103
+ "motor_4",
104
+ "motor_5",
105
+ "motor_6"
106
+ ]
107
+ }
108
+ },
109
+ "timestamp": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "episode_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ },
123
+ "frame_index": {
124
+ "dtype": "int64",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "next.reward": {
131
+ "dtype": "float32",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "next.done": {
138
+ "dtype": "bool",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "task_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
  }
158
  }
159
  }
160
+ ```
161
+
162
+
163
+ ## Citation
164
+
165
+ **BibTeX:**
166
+
167
+ ```bibtex
168
+ @Article{Osa22,
169
+ author = {Takayuki Osa},
170
+ journal = {The International Journal of Robotics Research},
171
+ title = {Motion Planning by Learning the Solution Manifold in Trajectory Optimization},
172
+ year = {2022},
173
+ number = {3},
174
+ pages = {291--311},
175
+ volume = {41},
176
+ }
177
  ```