ac-pate commited on
Commit
c0375dd
·
verified ·
1 Parent(s): 9ff4d70

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +184 -0
README.md ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "mimic_follower",
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": 200,
35
+ "fps": 30,
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
+ "action": {
41
+ "dtype": "float32",
42
+ "names": [
43
+ "left_shoulder_pan.pos",
44
+ "left_shoulder_lift.pos",
45
+ "left_elbow_flex.pos",
46
+ "left_wrist_flex.pos",
47
+ "left_wrist_roll.pos",
48
+ "left_gripper.pos",
49
+ "right_shoulder_pan.pos",
50
+ "right_shoulder_lift.pos",
51
+ "right_elbow_flex.pos",
52
+ "right_wrist_flex.pos",
53
+ "right_wrist_roll.pos",
54
+ "right_gripper.pos",
55
+ "base_vx",
56
+ "base_vy",
57
+ "base_omega"
58
+ ],
59
+ "shape": [
60
+ 15
61
+ ]
62
+ },
63
+ "observation.state": {
64
+ "dtype": "float32",
65
+ "names": [
66
+ "left_shoulder_pan.pos",
67
+ "left_shoulder_lift.pos",
68
+ "left_elbow_flex.pos",
69
+ "left_wrist_flex.pos",
70
+ "left_wrist_roll.pos",
71
+ "left_gripper.pos",
72
+ "right_shoulder_pan.pos",
73
+ "right_shoulder_lift.pos",
74
+ "right_elbow_flex.pos",
75
+ "right_wrist_flex.pos",
76
+ "right_wrist_roll.pos",
77
+ "right_gripper.pos",
78
+ "base_x",
79
+ "base_y",
80
+ "base_theta"
81
+ ],
82
+ "shape": [
83
+ 15
84
+ ]
85
+ },
86
+ "observation.images.right_wrist": {
87
+ "dtype": "video",
88
+ "shape": [
89
+ 480,
90
+ 640,
91
+ 3
92
+ ],
93
+ "names": [
94
+ "height",
95
+ "width",
96
+ "channels"
97
+ ]
98
+ },
99
+ "observation.images.left_wrist": {
100
+ "dtype": "video",
101
+ "shape": [
102
+ 480,
103
+ 640,
104
+ 3
105
+ ],
106
+ "names": [
107
+ "height",
108
+ "width",
109
+ "channels"
110
+ ]
111
+ },
112
+ "observation.images.front": {
113
+ "dtype": "video",
114
+ "shape": [
115
+ 480,
116
+ 640,
117
+ 3
118
+ ],
119
+ "names": [
120
+ "height",
121
+ "width",
122
+ "channels"
123
+ ]
124
+ },
125
+ "observation.images.top": {
126
+ "dtype": "video",
127
+ "shape": [
128
+ 720,
129
+ 1280,
130
+ 3
131
+ ],
132
+ "names": [
133
+ "height",
134
+ "width",
135
+ "channels"
136
+ ]
137
+ },
138
+ "timestamp": {
139
+ "dtype": "float32",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "frame_index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "episode_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ },
159
+ "index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ },
166
+ "task_index": {
167
+ "dtype": "int64",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
+ }
173
+ }
174
+ }
175
+ ```
176
+
177
+
178
+ ## Citation
179
+
180
+ **BibTeX:**
181
+
182
+ ```bibtex
183
+ [More Information Needed]
184
+ ```