kelo234 commited on
Commit
125143d
·
verified ·
1 Parent(s): 4f5e473

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +169 -14
README.md CHANGED
@@ -3,18 +3,173 @@ license: apache-2.0
3
  task_categories:
4
  - robotics
5
  tags:
6
- - LeRobot
7
- - p
8
- - i
9
- - p
10
- - e
11
- - r
12
- - ' '
13
- - t
14
- - r
15
- - a
16
- - i
17
- - 'n'
18
  configs:
19
- - config_name: default
20
- data_files: data/*/*.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  task_categories:
4
  - robotics
5
  tags:
6
+ - LeRobot
7
+ - p
8
+ - i
9
+ - p
10
+ - e
11
+ - r
12
+ - ' '
13
+ - t
14
+ - r
15
+ - a
16
+ - i
17
+ - n
18
  configs:
19
+ - config_name: default
20
+ data_files: data/*/*.parquet
21
+ ---
22
+
23
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
24
+
25
+ ## Dataset Description
26
+
27
+
28
+
29
+ - **Homepage:** [More Information Needed]
30
+ - **Paper:** [More Information Needed]
31
+ - **License:** apache-2.0
32
+
33
+ ## Dataset Structure
34
+
35
+ [meta/info.json](meta/info.json):
36
+ ```json
37
+ {
38
+ "codebase_version": "v2.0",
39
+ "robot_type": "piper",
40
+ "total_episodes": 50,
41
+ "total_frames": 15000,
42
+ "total_tasks": 1,
43
+ "total_videos": 0,
44
+ "total_chunks": 1,
45
+ "chunks_size": 1000,
46
+ "fps": 15,
47
+ "splits": {
48
+ "train": "0:50"
49
+ },
50
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
51
+ "video_path": null,
52
+ "features": {
53
+ "action": {
54
+ "dtype": "float32",
55
+ "shape": [
56
+ 9
57
+ ],
58
+ "names": [
59
+ "main_shoulder_pan",
60
+ "main_shoulder_lift",
61
+ "main_elbow_flex",
62
+ "main_wrist_flex",
63
+ "main_wrist_angle",
64
+ "main_wrist_roll",
65
+ "main_gripper",
66
+ "main_linear_velocity",
67
+ "main_angular_velocity"
68
+ ]
69
+ },
70
+ "observation.state": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 9
74
+ ],
75
+ "names": [
76
+ "main_shoulder_pan",
77
+ "main_shoulder_lift",
78
+ "main_elbow_flex",
79
+ "main_wrist_flex",
80
+ "main_wrist_angle",
81
+ "main_wrist_roll",
82
+ "main_gripper",
83
+ "main_linear_velocity",
84
+ "main_angular_velocity"
85
+ ]
86
+ },
87
+ "observation.images.laptop": {
88
+ "dtype": "image",
89
+ "shape": [
90
+ 480,
91
+ 640,
92
+ 3
93
+ ],
94
+ "names": [
95
+ "height",
96
+ "width",
97
+ "channels"
98
+ ],
99
+ "info": null
100
+ },
101
+ "observation.images.phone": {
102
+ "dtype": "image",
103
+ "shape": [
104
+ 480,
105
+ 640,
106
+ 3
107
+ ],
108
+ "names": [
109
+ "height",
110
+ "width",
111
+ "channels"
112
+ ],
113
+ "info": null
114
+ },
115
+ "observation.images.low": {
116
+ "dtype": "image",
117
+ "shape": [
118
+ 480,
119
+ 640,
120
+ 3
121
+ ],
122
+ "names": [
123
+ "height",
124
+ "width",
125
+ "channels"
126
+ ],
127
+ "info": null
128
+ },
129
+ "timestamp": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "frame_index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "episode_index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ },
157
+ "task_index": {
158
+ "dtype": "int64",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "names": null
163
+ }
164
+ }
165
+ }
166
+ ```
167
+
168
+
169
+ ## Citation
170
+
171
+ **BibTeX:**
172
+
173
+ ```bibtex
174
+ [More Information Needed]
175
+ ```