Jinyu220 commited on
Commit
c2f0ce3
·
verified ·
1 Parent(s): 3bdcd03

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +187 -0
README.md ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 8,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "observation.images.top_cam": {
41
+ "dtype": "video",
42
+ "shape": [
43
+ 480,
44
+ 640,
45
+ 3
46
+ ],
47
+ "names": [
48
+ "height",
49
+ "width",
50
+ "channel"
51
+ ]
52
+ },
53
+ "observation.images.button_cam": {
54
+ "dtype": "video",
55
+ "shape": [
56
+ 480,
57
+ 640,
58
+ 3
59
+ ],
60
+ "names": [
61
+ "height",
62
+ "width",
63
+ "channel"
64
+ ]
65
+ },
66
+ "observation.images.wrist_cam_left": {
67
+ "dtype": "video",
68
+ "shape": [
69
+ 480,
70
+ 640,
71
+ 3
72
+ ],
73
+ "names": [
74
+ "height",
75
+ "width",
76
+ "channel"
77
+ ]
78
+ },
79
+ "observation.images.wrist_cam_right": {
80
+ "dtype": "video",
81
+ "shape": [
82
+ 480,
83
+ 640,
84
+ 3
85
+ ],
86
+ "names": [
87
+ "height",
88
+ "width",
89
+ "channel"
90
+ ]
91
+ },
92
+ "observation.state": {
93
+ "dtype": "float32",
94
+ "shape": [
95
+ 14
96
+ ],
97
+ "names": null
98
+ },
99
+ "action": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 14
103
+ ],
104
+ "names": null
105
+ },
106
+ "left_arm_pose": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 16
110
+ ],
111
+ "names": null
112
+ },
113
+ "right_arm_pose": {
114
+ "dtype": "float32",
115
+ "shape": [
116
+ 16
117
+ ],
118
+ "names": null
119
+ },
120
+ "left_gripper": {
121
+ "dtype": "float32",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "right_gripper": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "task": {
135
+ "dtype": "int32",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "timestamp": {
142
+ "dtype": "float32",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "frame_index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "episode_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ },
162
+ "index": {
163
+ "dtype": "int64",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "names": null
168
+ },
169
+ "task_index": {
170
+ "dtype": "int64",
171
+ "shape": [
172
+ 1
173
+ ],
174
+ "names": null
175
+ }
176
+ }
177
+ }
178
+ ```
179
+
180
+
181
+ ## Citation
182
+
183
+ **BibTeX:**
184
+
185
+ ```bibtex
186
+ [More Information Needed]
187
+ ```