pdd46465 commited on
Commit
f2d925b
1 Parent(s): 9f77868

Upload README.md with huggingface_hub

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