aliberts HF staff commited on
Commit
2df895f
1 Parent(s): 5a5a316

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +155 -63
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": 1447,
16
  "total_frames": 699432,
@@ -22,69 +36,147 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:1447"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "end_pose",
28
- "start_pos",
29
- "gripper_width"
30
- ],
31
- "video_keys": [
32
- "observation.image"
33
- ],
34
- "image_keys": [],
35
- "shapes": {
36
- "observation.state": 7,
37
- "end_pose": 6,
38
- "start_pos": 6,
39
- "gripper_width": 1,
40
- "observation.image": {
41
- "width": 224,
42
- "height": 224,
43
- "channels": 3
44
- }
45
- },
46
- "names": {
47
- "observation.state": [
48
- "motor_0",
49
- "motor_1",
50
- "motor_2",
51
- "motor_3",
52
- "motor_4",
53
- "motor_5",
54
- "motor_6"
55
- ],
56
- "end_pose": [
57
- "motor_0",
58
- "motor_1",
59
- "motor_2",
60
- "motor_3",
61
- "motor_4",
62
- "motor_5"
63
- ],
64
- "start_pos": [
65
- "motor_0",
66
- "motor_1",
67
- "motor_2",
68
- "motor_3",
69
- "motor_4",
70
- "motor_5"
71
- ],
72
- "gripper_width": [
73
- "motor_0"
74
- ]
75
- },
76
- "videos": {
77
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
78
  "observation.image": {
79
- "video.fps": 10.0,
80
- "video.width": 224,
81
- "video.height": 224,
82
- "video.channels": 3,
83
- "video.codec": "av1",
84
- "video.pix_fmt": "yuv420p",
85
- "video.is_depth_map": false,
86
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  }
88
  }
89
  }
 
 
 
 
 
 
 
 
 
90
  ```
 
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": 1447,
30
  "total_frames": 699432,
 
36
  "splits": {
37
  "train": "0:1447"
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.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 224,
46
+ 224,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 10.0,
56
+ "video.codec": "av1",
57
+ "video.pix_fmt": "yuv420p",
58
+ "video.is_depth_map": false,
59
+ "has_audio": false
60
+ }
61
+ },
62
+ "observation.state": {
63
+ "dtype": "float32",
64
+ "shape": [
65
+ 7
66
+ ],
67
+ "names": {
68
+ "motors": [
69
+ "motor_0",
70
+ "motor_1",
71
+ "motor_2",
72
+ "motor_3",
73
+ "motor_4",
74
+ "motor_5",
75
+ "motor_6"
76
+ ]
77
+ }
78
+ },
79
+ "episode_index": {
80
+ "dtype": "int64",
81
+ "shape": [
82
+ 1
83
+ ],
84
+ "names": null
85
+ },
86
+ "frame_index": {
87
+ "dtype": "int64",
88
+ "shape": [
89
+ 1
90
+ ],
91
+ "names": null
92
+ },
93
+ "timestamp": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 1
97
+ ],
98
+ "names": null
99
+ },
100
+ "episode_data_index_from": {
101
+ "dtype": "int64",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null
106
+ },
107
+ "episode_data_index_to": {
108
+ "dtype": "int64",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ },
114
+ "end_pose": {
115
+ "dtype": "float32",
116
+ "shape": [
117
+ 6
118
+ ],
119
+ "names": {
120
+ "motors": [
121
+ "motor_0",
122
+ "motor_1",
123
+ "motor_2",
124
+ "motor_3",
125
+ "motor_4",
126
+ "motor_5"
127
+ ]
128
+ }
129
+ },
130
+ "start_pos": {
131
+ "dtype": "float32",
132
+ "shape": [
133
+ 6
134
+ ],
135
+ "names": {
136
+ "motors": [
137
+ "motor_0",
138
+ "motor_1",
139
+ "motor_2",
140
+ "motor_3",
141
+ "motor_4",
142
+ "motor_5"
143
+ ]
144
+ }
145
+ },
146
+ "gripper_width": {
147
+ "dtype": "float32",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": {
152
+ "motors": [
153
+ "motor_0"
154
+ ]
155
+ }
156
+ },
157
+ "index": {
158
+ "dtype": "int64",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "names": null
163
+ },
164
+ "task_index": {
165
+ "dtype": "int64",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "names": null
170
  }
171
  }
172
  }
173
+ ```
174
+
175
+
176
+ ## Citation
177
+
178
+ **BibTeX:**
179
+
180
+ ```bibtex
181
+ [More Information Needed]
182
  ```