danmac1 commited on
Commit
4a38dd8
1 Parent(s): c096cce

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +167 -10
README.md CHANGED
@@ -1,10 +1,167 @@
1
- ---
2
- task_categories:
3
- - robotics
4
- tags:
5
- - LeRobot
6
- - so100
7
- - tutorial
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": 50,
30
+ "total_frames": 28159,
31
+ "total_tasks": 1,
32
+ "total_videos": 100,
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
+ 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
+ "observation.images.laptop": {
59
+ "dtype": "video",
60
+ "shape": [
61
+ 480,
62
+ 640,
63
+ 3
64
+ ],
65
+ "names": [
66
+ "height",
67
+ "width",
68
+ "channel"
69
+ ],
70
+ "video_info": {
71
+ "video.fps": 30.0,
72
+ "video.codec": "av1",
73
+ "video.pix_fmt": "yuv420p",
74
+ "video.is_depth_map": false,
75
+ "has_audio": false
76
+ }
77
+ },
78
+ "observation.images.phone": {
79
+ "dtype": "video",
80
+ "shape": [
81
+ 480,
82
+ 640,
83
+ 3
84
+ ],
85
+ "names": [
86
+ "height",
87
+ "width",
88
+ "channel"
89
+ ],
90
+ "video_info": {
91
+ "video.fps": 30.0,
92
+ "video.codec": "av1",
93
+ "video.pix_fmt": "yuv420p",
94
+ "video.is_depth_map": false,
95
+ "has_audio": false
96
+ }
97
+ },
98
+ "action": {
99
+ "dtype": "float32",
100
+ "shape": [
101
+ 6
102
+ ],
103
+ "names": {
104
+ "motors": [
105
+ "motor_0",
106
+ "motor_1",
107
+ "motor_2",
108
+ "motor_3",
109
+ "motor_4",
110
+ "motor_5"
111
+ ]
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
+ ```