nie0731 commited on
Commit
e02b576
·
verified ·
1 Parent(s): c9091ce

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +197 -0
README.md ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - bread
8
+ - A2D
9
+ - dual-arm
10
+ - manipulation
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+ ## Dataset Description
19
+
20
+
21
+
22
+ - **Homepage:** [More Information Needed]
23
+ - **Paper:** [More Information Needed]
24
+ - **License:** apache-2.0
25
+
26
+ ## Dataset Structure
27
+
28
+ [meta/info.json](meta/info.json):
29
+ ```json
30
+ {
31
+ "codebase_version": "v2.1",
32
+ "robot_type": "A2D",
33
+ "total_episodes": 59,
34
+ "total_frames": 19242,
35
+ "total_tasks": 1,
36
+ "total_videos": 0,
37
+ "total_chunks": 1,
38
+ "chunks_size": 1000,
39
+ "fps": 30,
40
+ "splits": {
41
+ "train": "0:59"
42
+ },
43
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
44
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
45
+ "features": {
46
+ "observation.state": {
47
+ "dtype": "float32",
48
+ "shape": [
49
+ 53
50
+ ],
51
+ "names": [
52
+ "state"
53
+ ]
54
+ },
55
+ "action": {
56
+ "dtype": "float32",
57
+ "shape": [
58
+ 36
59
+ ],
60
+ "names": [
61
+ "action"
62
+ ]
63
+ },
64
+ "annotation.human.coarse_action": {
65
+ "dtype": "int64",
66
+ "shape": [
67
+ 1
68
+ ],
69
+ "names": [
70
+ "coarse_action"
71
+ ]
72
+ },
73
+ "observation.images.head_color": {
74
+ "dtype": "image",
75
+ "shape": [
76
+ 800,
77
+ 1280,
78
+ 3
79
+ ],
80
+ "names": [
81
+ "height",
82
+ "width",
83
+ "channel"
84
+ ]
85
+ },
86
+ "observation.images.head_right_fisheye": {
87
+ "dtype": "image",
88
+ "shape": [
89
+ 1536,
90
+ 1920,
91
+ 3
92
+ ],
93
+ "names": [
94
+ "height",
95
+ "width",
96
+ "channel"
97
+ ]
98
+ },
99
+ "observation.images.head_center_fisheye": {
100
+ "dtype": "image",
101
+ "shape": [
102
+ 1536,
103
+ 1920,
104
+ 3
105
+ ],
106
+ "names": [
107
+ "height",
108
+ "width",
109
+ "channel"
110
+ ]
111
+ },
112
+ "observation.images.head_left_fisheye": {
113
+ "dtype": "image",
114
+ "shape": [
115
+ 1536,
116
+ 1920,
117
+ 3
118
+ ],
119
+ "names": [
120
+ "height",
121
+ "width",
122
+ "channel"
123
+ ]
124
+ },
125
+ "observation.images.hand_right": {
126
+ "dtype": "image",
127
+ "shape": [
128
+ 480,
129
+ 848,
130
+ 3
131
+ ],
132
+ "names": [
133
+ "height",
134
+ "width",
135
+ "channel"
136
+ ]
137
+ },
138
+ "observation.images.hand_left": {
139
+ "dtype": "image",
140
+ "shape": [
141
+ 480,
142
+ 848,
143
+ 3
144
+ ],
145
+ "names": [
146
+ "height",
147
+ "width",
148
+ "channel"
149
+ ]
150
+ },
151
+ "timestamp": {
152
+ "dtype": "float32",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "frame_index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ },
165
+ "episode_index": {
166
+ "dtype": "int64",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
+ },
172
+ "index": {
173
+ "dtype": "int64",
174
+ "shape": [
175
+ 1
176
+ ],
177
+ "names": null
178
+ },
179
+ "task_index": {
180
+ "dtype": "int64",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
+ }
186
+ }
187
+ }
188
+ ```
189
+
190
+
191
+ ## Citation
192
+
193
+ **BibTeX:**
194
+
195
+ ```bibtex
196
+ [More Information Needed]
197
+ ```