pepijn223 HF staff commited on
Commit
8448690
·
verified ·
1 Parent(s): 65dec4b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +169 -0
README.md ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - tutorial
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.0",
29
+ "robot_type": "mobile_so100",
30
+ "total_episodes": 40,
31
+ "total_frames": 9590,
32
+ "total_tasks": 1,
33
+ "total_videos": 80,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:40"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "action": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 9
47
+ ],
48
+ "names": [
49
+ "main_shoulder_pan",
50
+ "main_shoulder_lift",
51
+ "main_elbow_flex",
52
+ "main_wrist_flex",
53
+ "main_wrist_roll",
54
+ "main_gripper",
55
+ "x_mm",
56
+ "y_mm",
57
+ "theta"
58
+ ]
59
+ },
60
+ "observation.state": {
61
+ "dtype": "float32",
62
+ "shape": [
63
+ 9
64
+ ],
65
+ "names": [
66
+ "main_shoulder_pan",
67
+ "main_shoulder_lift",
68
+ "main_elbow_flex",
69
+ "main_wrist_flex",
70
+ "main_wrist_roll",
71
+ "main_gripper",
72
+ "x_mm",
73
+ "y_mm",
74
+ "theta"
75
+ ]
76
+ },
77
+ "observation.images.mobile": {
78
+ "dtype": "video",
79
+ "shape": [
80
+ 480,
81
+ 640,
82
+ 3
83
+ ],
84
+ "names": [
85
+ "height",
86
+ "width",
87
+ "channels"
88
+ ],
89
+ "info": {
90
+ "video.fps": 30.0,
91
+ "video.height": 480,
92
+ "video.width": 640,
93
+ "video.channels": 3,
94
+ "video.codec": "av1",
95
+ "video.pix_fmt": "yuv420p",
96
+ "video.is_depth_map": false,
97
+ "has_audio": false
98
+ }
99
+ },
100
+ "observation.images.mobile2": {
101
+ "dtype": "video",
102
+ "shape": [
103
+ 480,
104
+ 640,
105
+ 3
106
+ ],
107
+ "names": [
108
+ "height",
109
+ "width",
110
+ "channels"
111
+ ],
112
+ "info": {
113
+ "video.fps": 30.0,
114
+ "video.height": 480,
115
+ "video.width": 640,
116
+ "video.channels": 3,
117
+ "video.codec": "av1",
118
+ "video.pix_fmt": "yuv420p",
119
+ "video.is_depth_map": false,
120
+ "has_audio": false
121
+ }
122
+ },
123
+ "timestamp": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "frame_index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "episode_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "task_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ }
158
+ }
159
+ }
160
+ ```
161
+
162
+
163
+ ## Citation
164
+
165
+ **BibTeX:**
166
+
167
+ ```bibtex
168
+ [More Information Needed]
169
+ ```