andy309 commited on
Commit
889e3a0
·
verified ·
1 Parent(s): 7c5bf12

Upload README.md with huggingface_hub

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