fengzongbao commited on
Commit
4c5e808
·
verified ·
1 Parent(s): fee3085

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +213 -0
README.md ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": null,
29
+ "total_episodes": 20,
30
+ "total_frames": 2560,
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
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 16
46
+ ],
47
+ "names": null
48
+ },
49
+ "action": {
50
+ "dtype": "float32",
51
+ "shape": [
52
+ 7
53
+ ],
54
+ "names": [
55
+ "delta_x_ee",
56
+ "delta_y_ee",
57
+ "delta_z_ee",
58
+ "delta_roll_ee",
59
+ "delta_pitch_ee",
60
+ "delta_yaw_ee",
61
+ "gripper_delta"
62
+ ]
63
+ },
64
+ "next.reward": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 1
68
+ ],
69
+ "names": null
70
+ },
71
+ "next.done": {
72
+ "dtype": "bool",
73
+ "shape": [
74
+ 1
75
+ ],
76
+ "names": null
77
+ },
78
+ "complementary_info.discrete_penalty": {
79
+ "dtype": "float32",
80
+ "shape": [
81
+ 1
82
+ ],
83
+ "names": [
84
+ "discrete_penalty"
85
+ ]
86
+ },
87
+ "complementary_info.mc_returns": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "names": [
93
+ "mc_returns"
94
+ ]
95
+ },
96
+ "complementary_info.progress": {
97
+ "dtype": "float32",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": [
102
+ "progress"
103
+ ]
104
+ },
105
+ "complementary_info.pred_progress": {
106
+ "dtype": "float32",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": [
111
+ "pred_progress"
112
+ ]
113
+ },
114
+ "action_embedding": {
115
+ "dtype": "float32",
116
+ "shape": [
117
+ 384
118
+ ],
119
+ "names": null
120
+ },
121
+ "observation.images.front": {
122
+ "dtype": "video",
123
+ "shape": [
124
+ 3,
125
+ 256,
126
+ 256
127
+ ],
128
+ "names": [
129
+ "channels",
130
+ "height",
131
+ "width"
132
+ ],
133
+ "info": {
134
+ "video.height": 256,
135
+ "video.width": 256,
136
+ "video.codec": "av1",
137
+ "video.pix_fmt": "yuv420p",
138
+ "video.is_depth_map": false,
139
+ "video.fps": 10,
140
+ "video.channels": 3,
141
+ "has_audio": false
142
+ }
143
+ },
144
+ "observation.images.wrist": {
145
+ "dtype": "video",
146
+ "shape": [
147
+ 3,
148
+ 128,
149
+ 128
150
+ ],
151
+ "names": [
152
+ "channels",
153
+ "height",
154
+ "width"
155
+ ],
156
+ "info": {
157
+ "video.height": 128,
158
+ "video.width": 128,
159
+ "video.codec": "av1",
160
+ "video.pix_fmt": "yuv420p",
161
+ "video.is_depth_map": false,
162
+ "video.fps": 10,
163
+ "video.channels": 3,
164
+ "has_audio": false
165
+ }
166
+ },
167
+ "timestamp": {
168
+ "dtype": "float32",
169
+ "shape": [
170
+ 1
171
+ ],
172
+ "names": null
173
+ },
174
+ "frame_index": {
175
+ "dtype": "int64",
176
+ "shape": [
177
+ 1
178
+ ],
179
+ "names": null
180
+ },
181
+ "episode_index": {
182
+ "dtype": "int64",
183
+ "shape": [
184
+ 1
185
+ ],
186
+ "names": null
187
+ },
188
+ "index": {
189
+ "dtype": "int64",
190
+ "shape": [
191
+ 1
192
+ ],
193
+ "names": null
194
+ },
195
+ "task_index": {
196
+ "dtype": "int64",
197
+ "shape": [
198
+ 1
199
+ ],
200
+ "names": null
201
+ }
202
+ }
203
+ }
204
+ ```
205
+
206
+
207
+ ## Citation
208
+
209
+ **BibTeX:**
210
+
211
+ ```bibtex
212
+ [More Information Needed]
213
+ ```