aliberts HF staff commited on
Commit
fa2e23b
1 Parent(s): 590b201

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +173 -0
README.md ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - reachy
8
+ - eval
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+
19
+
20
+ - **Homepage:** [More Information Needed]
21
+ - **Paper:** [More Information Needed]
22
+ - **License:** apache-2.0
23
+
24
+ ## Dataset Structure
25
+
26
+ [meta/info.json](meta/info.json):
27
+ ```json
28
+ {
29
+ "codebase_version": "v2.0",
30
+ "robot_type": "reachy2",
31
+ "total_episodes": 1,
32
+ "total_frames": 312,
33
+ "total_tasks": 1,
34
+ "total_videos": 1,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 15,
38
+ "splits": {
39
+ "train": "0:1"
40
+ },
41
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
42
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
43
+ "features": {
44
+ "action": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 22
48
+ ],
49
+ "names": [
50
+ "neck_yaw.pos",
51
+ "neck_pitch.pos",
52
+ "neck_roll.pos",
53
+ "r_shoulder_pitch.pos",
54
+ "r_shoulder_roll.pos",
55
+ "r_elbow_yaw.pos",
56
+ "r_elbow_pitch.pos",
57
+ "r_wrist_roll.pos",
58
+ "r_wrist_pitch.pos",
59
+ "r_wrist_yaw.pos",
60
+ "r_gripper.pos",
61
+ "l_shoulder_pitch.pos",
62
+ "l_shoulder_roll.pos",
63
+ "l_elbow_yaw.pos",
64
+ "l_elbow_pitch.pos",
65
+ "l_wrist_roll.pos",
66
+ "l_wrist_pitch.pos",
67
+ "l_wrist_yaw.pos",
68
+ "l_gripper.pos",
69
+ "mobile_base.vx",
70
+ "mobile_base.vy",
71
+ "mobile_base.vtheta"
72
+ ]
73
+ },
74
+ "observation.state": {
75
+ "dtype": "float32",
76
+ "shape": [
77
+ 22
78
+ ],
79
+ "names": [
80
+ "neck_yaw.pos",
81
+ "neck_pitch.pos",
82
+ "neck_roll.pos",
83
+ "r_shoulder_pitch.pos",
84
+ "r_shoulder_roll.pos",
85
+ "r_elbow_yaw.pos",
86
+ "r_elbow_pitch.pos",
87
+ "r_wrist_roll.pos",
88
+ "r_wrist_pitch.pos",
89
+ "r_wrist_yaw.pos",
90
+ "r_gripper.pos",
91
+ "l_shoulder_pitch.pos",
92
+ "l_shoulder_roll.pos",
93
+ "l_elbow_yaw.pos",
94
+ "l_elbow_pitch.pos",
95
+ "l_wrist_roll.pos",
96
+ "l_wrist_pitch.pos",
97
+ "l_wrist_yaw.pos",
98
+ "l_gripper.pos",
99
+ "mobile_base.vx",
100
+ "mobile_base.vy",
101
+ "mobile_base.vtheta"
102
+ ]
103
+ },
104
+ "observation.images.head_left": {
105
+ "dtype": "video",
106
+ "shape": [
107
+ 720,
108
+ 960,
109
+ 3
110
+ ],
111
+ "names": [
112
+ "height",
113
+ "width",
114
+ "channels"
115
+ ],
116
+ "info": {
117
+ "video.fps": 15.0,
118
+ "video.height": 720,
119
+ "video.width": 960,
120
+ "video.channels": 3,
121
+ "video.codec": "h264",
122
+ "video.pix_fmt": "yuv420p",
123
+ "video.is_depth_map": false,
124
+ "has_audio": false
125
+ }
126
+ },
127
+ "timestamp": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "frame_index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "episode_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "task_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ }
162
+ }
163
+ }
164
+ ```
165
+
166
+
167
+ ## Citation
168
+
169
+ **BibTeX:**
170
+
171
+ ```bibtex
172
+ [More Information Needed]
173
+ ```