苏智 commited on
Commit
63bb17c
·
verified ·
1 Parent(s): d9021ec

Upload README.md with huggingface_hub

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