TreeePlanter commited on
Commit
f53972f
·
verified ·
1 Parent(s): 362d039

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +193 -0
README.md ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": null,
29
+ "total_episodes": 100,
30
+ "total_frames": 8767,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:100"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 13
46
+ ],
47
+ "names": [
48
+ "qpos_0",
49
+ "qpos_1",
50
+ "qpos_2",
51
+ "qpos_3",
52
+ "qpos_4",
53
+ "qpos_5",
54
+ "qpos_6",
55
+ "qpos_7",
56
+ "qpos_8",
57
+ "qpos_9",
58
+ "qpos_10",
59
+ "qpos_11",
60
+ "qpos_12"
61
+ ]
62
+ },
63
+ "action": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 7
67
+ ],
68
+ "names": [
69
+ "action_0",
70
+ "action_1",
71
+ "action_2",
72
+ "action_3",
73
+ "action_4",
74
+ "action_5",
75
+ "action_6"
76
+ ]
77
+ },
78
+ "observation.images.left_camera": {
79
+ "dtype": "video",
80
+ "shape": [
81
+ 256,
82
+ 256,
83
+ 3
84
+ ],
85
+ "names": [
86
+ "height",
87
+ "width",
88
+ "channels"
89
+ ],
90
+ "info": {
91
+ "video.height": 256,
92
+ "video.width": 256,
93
+ "video.codec": "av1",
94
+ "video.pix_fmt": "yuv420p",
95
+ "video.is_depth_map": false,
96
+ "video.fps": 10,
97
+ "video.channels": 3,
98
+ "has_audio": false
99
+ }
100
+ },
101
+ "observation.images.right_camera": {
102
+ "dtype": "video",
103
+ "shape": [
104
+ 256,
105
+ 256,
106
+ 3
107
+ ],
108
+ "names": [
109
+ "height",
110
+ "width",
111
+ "channels"
112
+ ],
113
+ "info": {
114
+ "video.height": 256,
115
+ "video.width": 256,
116
+ "video.codec": "av1",
117
+ "video.pix_fmt": "yuv420p",
118
+ "video.is_depth_map": false,
119
+ "video.fps": 10,
120
+ "video.channels": 3,
121
+ "has_audio": false
122
+ }
123
+ },
124
+ "observation.images.hand_camera": {
125
+ "dtype": "video",
126
+ "shape": [
127
+ 256,
128
+ 256,
129
+ 3
130
+ ],
131
+ "names": [
132
+ "height",
133
+ "width",
134
+ "channels"
135
+ ],
136
+ "info": {
137
+ "video.height": 256,
138
+ "video.width": 256,
139
+ "video.codec": "av1",
140
+ "video.pix_fmt": "yuv420p",
141
+ "video.is_depth_map": false,
142
+ "video.fps": 10,
143
+ "video.channels": 3,
144
+ "has_audio": false
145
+ }
146
+ },
147
+ "timestamp": {
148
+ "dtype": "float32",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "frame_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "episode_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "index": {
169
+ "dtype": "int64",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ },
175
+ "task_index": {
176
+ "dtype": "int64",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ }
182
+ }
183
+ }
184
+ ```
185
+
186
+
187
+ ## Citation
188
+
189
+ **BibTeX:**
190
+
191
+ ```bibtex
192
+ [More Information Needed]
193
+ ```