teotomic commited on
Commit
6d0559e
·
verified ·
1 Parent(s): d19e39b

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": "v2.1",
28
+ "robot_type": "g1",
29
+ "total_episodes": 20,
30
+ "total_frames": 7858,
31
+ "total_tasks": 2,
32
+ "total_videos": 20,
33
+ "total_chunks": 0,
34
+ "chunks_size": 1000,
35
+ "fps": 20,
36
+ "splits": {
37
+ "train": "0:100"
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
+ "observation.images.ego_view": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 256,
46
+ 256,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 20.0,
56
+ "video.codec": "h264",
57
+ "video.pix_fmt": null,
58
+ "video.is_depth_map": false,
59
+ "has_audio": false
60
+ }
61
+ },
62
+ "observation.state": {
63
+ "dtype": "float64",
64
+ "shape": [
65
+ 28
66
+ ],
67
+ "names": [
68
+ "motor_0",
69
+ "motor_1",
70
+ "motor_2",
71
+ "motor_3",
72
+ "motor_4",
73
+ "motor_5",
74
+ "motor_6",
75
+ "motor_7",
76
+ "motor_8",
77
+ "motor_9",
78
+ "motor_10",
79
+ "motor_11",
80
+ "motor_12",
81
+ "motor_13",
82
+ "motor_14",
83
+ "motor_15",
84
+ "motor_16",
85
+ "motor_17",
86
+ "motor_18",
87
+ "motor_19",
88
+ "motor_20",
89
+ "motor_21",
90
+ "motor_22",
91
+ "motor_23",
92
+ "motor_24",
93
+ "motor_25",
94
+ "motor_26",
95
+ "motor_27"
96
+ ]
97
+ },
98
+ "action": {
99
+ "dtype": "float64",
100
+ "shape": [
101
+ 28
102
+ ],
103
+ "names": [
104
+ "motor_0",
105
+ "motor_1",
106
+ "motor_2",
107
+ "motor_3",
108
+ "motor_4",
109
+ "motor_5",
110
+ "motor_6",
111
+ "motor_7",
112
+ "motor_8",
113
+ "motor_9",
114
+ "motor_10",
115
+ "motor_11",
116
+ "motor_12",
117
+ "motor_13",
118
+ "motor_14",
119
+ "motor_15",
120
+ "motor_16",
121
+ "motor_17",
122
+ "motor_18",
123
+ "motor_19",
124
+ "motor_20",
125
+ "motor_21",
126
+ "motor_22",
127
+ "motor_23",
128
+ "motor_24",
129
+ "motor_25",
130
+ "motor_26",
131
+ "motor_27"
132
+ ]
133
+ },
134
+ "timestamp": {
135
+ "dtype": "float64",
136
+ "shape": [
137
+ 1
138
+ ]
139
+ },
140
+ "annotation.human.action.task_description": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ]
145
+ },
146
+ "annotation.human.action.valid": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ]
151
+ },
152
+ "episode_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ]
157
+ },
158
+ "task_index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ]
163
+ },
164
+ "index": {
165
+ "dtype": "int64",
166
+ "shape": [
167
+ 1
168
+ ]
169
+ },
170
+ "next.reward": {
171
+ "dtype": "float64",
172
+ "shape": [
173
+ 1
174
+ ]
175
+ },
176
+ "next.done": {
177
+ "dtype": "bool",
178
+ "shape": [
179
+ 1
180
+ ]
181
+ }
182
+ }
183
+ }
184
+ ```
185
+
186
+
187
+ ## Citation
188
+
189
+ **BibTeX:**
190
+
191
+ ```bibtex
192
+ [More Information Needed]
193
+ ```