AdleBens commited on
Commit
107b6ea
·
verified ·
1 Parent(s): 6f4950f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +159 -2
README.md CHANGED
@@ -1,10 +1,167 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
6
- - lego
7
- - eval
 
8
  ---
 
9
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 10,
30
+ "total_frames": 3438,
31
+ "total_tasks": 1,
32
+ "total_videos": 20,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:10"
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
+ 6
46
+ ],
47
+ "names": {
48
+ "motors": [
49
+ "motor_0",
50
+ "motor_1",
51
+ "motor_2",
52
+ "motor_3",
53
+ "motor_4",
54
+ "motor_5"
55
+ ]
56
+ }
57
+ },
58
+ "action": {
59
+ "dtype": "float32",
60
+ "shape": [
61
+ 6
62
+ ],
63
+ "names": {
64
+ "motors": [
65
+ "motor_0",
66
+ "motor_1",
67
+ "motor_2",
68
+ "motor_3",
69
+ "motor_4",
70
+ "motor_5"
71
+ ]
72
+ }
73
+ },
74
+ "observation.images.laptop": {
75
+ "dtype": "video",
76
+ "shape": [
77
+ 480,
78
+ 640,
79
+ 3
80
+ ],
81
+ "names": [
82
+ "height",
83
+ "width",
84
+ "channel"
85
+ ],
86
+ "video_info": {
87
+ "video.fps": 30.0,
88
+ "video.codec": "av1",
89
+ "video.pix_fmt": "yuv420p",
90
+ "video.is_depth_map": false,
91
+ "has_audio": false
92
+ }
93
+ },
94
+ "observation.images.phone": {
95
+ "dtype": "video",
96
+ "shape": [
97
+ 480,
98
+ 640,
99
+ 3
100
+ ],
101
+ "names": [
102
+ "height",
103
+ "width",
104
+ "channel"
105
+ ],
106
+ "video_info": {
107
+ "video.fps": 30.0,
108
+ "video.codec": "av1",
109
+ "video.pix_fmt": "yuv420p",
110
+ "video.is_depth_map": false,
111
+ "has_audio": false
112
+ }
113
+ },
114
+ "episode_index": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "frame_index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "timestamp": {
129
+ "dtype": "float32",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "next.done": {
136
+ "dtype": "bool",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "task_index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ }
156
+ }
157
+ }
158
+ ```
159
+
160
+
161
+ ## Citation
162
+
163
+ **BibTeX:**
164
+
165
+ ```bibtex
166
+ [More Information Needed]
167
+ ```