vladfatu commited on
Commit
bb8c1f0
·
verified ·
1 Parent(s): 4a73330

Upload README.md with huggingface_hub

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