ivm-skl commited on
Commit
c486fc4
1 Parent(s): 10d2af4

Upload README.md with huggingface_hub

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