amxxd commited on
Commit
2293fae
·
verified ·
1 Parent(s): 9aae5fc

Upload README.md with huggingface_hub

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