DUDU9527 commited on
Commit
ee8a28e
1 Parent(s): f961f3b

Upload README.md with huggingface_hub

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