fabian-bunbury commited on
Commit
78b804c
·
verified ·
1 Parent(s): bee94dd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +183 -33
README.md CHANGED
@@ -1,43 +1,193 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
6
- dataset_info:
7
- features:
8
- - name: observation.state
9
- sequence: float32
10
- length: 9
11
- - name: observation.images.left
12
- dtype: video_frame
13
- - name: observation.images.wrist
14
- dtype: video_frame
15
- - name: observation.images.right
16
- dtype: video_frame
17
- - name: action
18
- sequence: float32
19
- length: 9
20
- - name: episode_index
21
- dtype: int64
22
- - name: frame_index
23
- dtype: int64
24
- - name: timestamp
25
- dtype: float32
26
- - name: next.done
27
- dtype: bool
28
- - name: index
29
- dtype: int64
30
- splits:
31
- - name: train
32
- num_bytes: 3110348.180774749
33
- num_examples: 11388
34
- download_size: 674594
35
- dataset_size: 3110348.180774749
36
  configs:
37
  - config_name: default
38
- data_files:
39
- - split: train
40
- path: data/train-*
41
  ---
 
42
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
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:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
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": 12546,
31
+ "total_tasks": 1,
32
+ "total_videos": 150,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
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.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 9
46
+ ],
47
+ "names": {
48
+ "motors": [
49
+ "motor_0",
50
+ "motor_1",
51
+ "motor_2",
52
+ "motor_3",
53
+ "motor_4",
54
+ "motor_5",
55
+ "motor_6",
56
+ "motor_7",
57
+ "motor_8"
58
+ ]
59
+ }
60
+ },
61
+ "observation.images.left": {
62
+ "dtype": "video",
63
+ "shape": [
64
+ 480,
65
+ 640,
66
+ 3
67
+ ],
68
+ "names": [
69
+ "height",
70
+ "width",
71
+ "channel"
72
+ ],
73
+ "video_info": {
74
+ "video.fps": 30.0,
75
+ "video.codec": "h264",
76
+ "video.pix_fmt": "yuv420p",
77
+ "video.is_depth_map": false,
78
+ "has_audio": false
79
+ }
80
+ },
81
+ "observation.images.wrist": {
82
+ "dtype": "video",
83
+ "shape": [
84
+ 480,
85
+ 640,
86
+ 3
87
+ ],
88
+ "names": [
89
+ "height",
90
+ "width",
91
+ "channel"
92
+ ],
93
+ "video_info": {
94
+ "video.fps": 30.0,
95
+ "video.codec": "h264",
96
+ "video.pix_fmt": "yuv420p",
97
+ "video.is_depth_map": false,
98
+ "has_audio": false
99
+ }
100
+ },
101
+ "observation.images.right": {
102
+ "dtype": "video",
103
+ "shape": [
104
+ 480,
105
+ 640,
106
+ 3
107
+ ],
108
+ "names": [
109
+ "height",
110
+ "width",
111
+ "channel"
112
+ ],
113
+ "video_info": {
114
+ "video.fps": 30.0,
115
+ "video.codec": "h264",
116
+ "video.pix_fmt": "yuv420p",
117
+ "video.is_depth_map": false,
118
+ "has_audio": false
119
+ }
120
+ },
121
+ "action": {
122
+ "dtype": "float32",
123
+ "shape": [
124
+ 9
125
+ ],
126
+ "names": {
127
+ "motors": [
128
+ "motor_0",
129
+ "motor_1",
130
+ "motor_2",
131
+ "motor_3",
132
+ "motor_4",
133
+ "motor_5",
134
+ "motor_6",
135
+ "motor_7",
136
+ "motor_8"
137
+ ]
138
+ }
139
+ },
140
+ "episode_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "frame_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "timestamp": {
155
+ "dtype": "float32",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "next.done": {
162
+ "dtype": "bool",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "index": {
169
+ "dtype": "int64",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ },
175
+ "task_index": {
176
+ "dtype": "int64",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ }
182
+ }
183
+ }
184
+ ```
185
+
186
+
187
+ ## Citation
188
+
189
+ **BibTeX:**
190
+
191
+ ```bibtex
192
+ [More Information Needed]
193
+ ```