glannuzel commited on
Commit
dd7ed3d
·
verified ·
1 Parent(s): cccb4e3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +156 -0
README.md ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": "reachy2",
29
+ "total_episodes": 2,
30
+ "total_frames": 107,
31
+ "total_tasks": 1,
32
+ "total_videos": 4,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 15,
36
+ "splits": {
37
+ "train": "0:2"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 3
46
+ ],
47
+ "names": [
48
+ "r_shoulder_pitch.pos",
49
+ "r_elbow_pitch.pos",
50
+ "r_gripper.pos"
51
+ ]
52
+ },
53
+ "observation.state": {
54
+ "dtype": "float32",
55
+ "shape": [
56
+ 3
57
+ ],
58
+ "names": [
59
+ "r_shoulder_pitch.pos",
60
+ "r_elbow_pitch.pos",
61
+ "r_gripper.pos"
62
+ ]
63
+ },
64
+ "observation.images.teleop_left": {
65
+ "dtype": "video",
66
+ "shape": [
67
+ 480,
68
+ 640,
69
+ 3
70
+ ],
71
+ "names": [
72
+ "height",
73
+ "width",
74
+ "channels"
75
+ ],
76
+ "info": {
77
+ "video.height": 480,
78
+ "video.width": 640,
79
+ "video.codec": "av1",
80
+ "video.pix_fmt": "yuv420p",
81
+ "video.is_depth_map": false,
82
+ "video.fps": 15,
83
+ "video.channels": 3,
84
+ "has_audio": false
85
+ }
86
+ },
87
+ "observation.images.teleop_right": {
88
+ "dtype": "video",
89
+ "shape": [
90
+ 480,
91
+ 640,
92
+ 3
93
+ ],
94
+ "names": [
95
+ "height",
96
+ "width",
97
+ "channels"
98
+ ],
99
+ "info": {
100
+ "video.height": 480,
101
+ "video.width": 640,
102
+ "video.codec": "av1",
103
+ "video.pix_fmt": "yuv420p",
104
+ "video.is_depth_map": false,
105
+ "video.fps": 15,
106
+ "video.channels": 3,
107
+ "has_audio": false
108
+ }
109
+ },
110
+ "timestamp": {
111
+ "dtype": "float32",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ },
117
+ "frame_index": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "episode_index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "task_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ }
145
+ }
146
+ }
147
+ ```
148
+
149
+
150
+ ## Citation
151
+
152
+ **BibTeX:**
153
+
154
+ ```bibtex
155
+ [More Information Needed]
156
+ ```