tlpss commited on
Commit
f66b144
·
verified ·
1 Parent(s): fe7bd46

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +188 -0
README.md ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": null,
29
+ "total_episodes": 103,
30
+ "total_frames": 18996,
31
+ "total_tasks": 1,
32
+ "total_videos": 206,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:103"
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
+ 10
46
+ ],
47
+ "names": {
48
+ "axes": [
49
+ "x",
50
+ "y",
51
+ "z",
52
+ "rxx",
53
+ "rxy",
54
+ "rxz",
55
+ "ryx",
56
+ "ryy",
57
+ "ryz",
58
+ "gripper_width"
59
+ ]
60
+ }
61
+ },
62
+ "action": {
63
+ "dtype": "float32",
64
+ "shape": [
65
+ 10
66
+ ],
67
+ "names": {
68
+ "axes": [
69
+ "x",
70
+ "y",
71
+ "z",
72
+ "rxx",
73
+ "rxy",
74
+ "rxz",
75
+ "ryx",
76
+ "ryy",
77
+ "ryz",
78
+ "gripper_width"
79
+ ]
80
+ }
81
+ },
82
+ "next.reward": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "names": null
88
+ },
89
+ "next.success": {
90
+ "dtype": "bool",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null
95
+ },
96
+ "observation.image.camera_0": {
97
+ "dtype": "video",
98
+ "shape": [
99
+ 3,
100
+ 240,
101
+ 320
102
+ ],
103
+ "names": [
104
+ "channels",
105
+ "height",
106
+ "width"
107
+ ],
108
+ "info": {
109
+ "video.fps": 10.0,
110
+ "video.height": 240,
111
+ "video.width": 320,
112
+ "video.channels": 3,
113
+ "video.codec": "h264",
114
+ "video.pix_fmt": "yuv420p",
115
+ "video.is_depth_map": false,
116
+ "has_audio": false
117
+ }
118
+ },
119
+ "observation.image.camera_1": {
120
+ "dtype": "video",
121
+ "shape": [
122
+ 3,
123
+ 240,
124
+ 320
125
+ ],
126
+ "names": [
127
+ "channels",
128
+ "height",
129
+ "width"
130
+ ],
131
+ "info": {
132
+ "video.fps": 10.0,
133
+ "video.height": 240,
134
+ "video.width": 320,
135
+ "video.channels": 3,
136
+ "video.codec": "h264",
137
+ "video.pix_fmt": "yuv420p",
138
+ "video.is_depth_map": false,
139
+ "has_audio": false
140
+ }
141
+ },
142
+ "timestamp": {
143
+ "dtype": "float32",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "frame_index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "episode_index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ },
163
+ "index": {
164
+ "dtype": "int64",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "names": null
169
+ },
170
+ "task_index": {
171
+ "dtype": "int64",
172
+ "shape": [
173
+ 1
174
+ ],
175
+ "names": null
176
+ }
177
+ }
178
+ }
179
+ ```
180
+
181
+
182
+ ## Citation
183
+
184
+ **BibTeX:**
185
+
186
+ ```bibtex
187
+ [More Information Needed]
188
+ ```