aliberts HF staff commited on
Commit
595a42c
·
verified ·
1 Parent(s): 3fb7e26

Upload README.md with huggingface_hub

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