1g0rrr commited on
Commit
6241bbf
·
verified ·
1 Parent(s): 8857786

Upload README.md with huggingface_hub

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