benmayeux commited on
Commit
79d0352
·
verified ·
1 Parent(s): 177abf3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +179 -0
README.md ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": null,
29
+ "total_episodes": 5,
30
+ "total_frames": 1100,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 15,
36
+ "splits": {
37
+ "train": "0:5"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 7
46
+ ],
47
+ "names": {
48
+ "delta_x": 0,
49
+ "delta_y": 1,
50
+ "delta_z": 2,
51
+ "delta_rx": 3,
52
+ "delta_ry": 4,
53
+ "delta_rz": 5,
54
+ "gripper": 6
55
+ }
56
+ },
57
+ "next.reward": {
58
+ "dtype": "float32",
59
+ "shape": [
60
+ 1
61
+ ],
62
+ "names": null
63
+ },
64
+ "next.done": {
65
+ "dtype": "bool",
66
+ "shape": [
67
+ 1
68
+ ],
69
+ "names": null
70
+ },
71
+ "complementary_info.discrete_penalty": {
72
+ "dtype": "float32",
73
+ "shape": [
74
+ 1
75
+ ],
76
+ "names": [
77
+ "discrete_penalty"
78
+ ]
79
+ },
80
+ "observation.images.front": {
81
+ "dtype": "video",
82
+ "shape": [
83
+ 3,
84
+ 128,
85
+ 128
86
+ ],
87
+ "names": [
88
+ "channels",
89
+ "height",
90
+ "width"
91
+ ],
92
+ "info": {
93
+ "video.height": 128,
94
+ "video.width": 128,
95
+ "video.codec": "av1",
96
+ "video.pix_fmt": "yuv420p",
97
+ "video.is_depth_map": false,
98
+ "video.fps": 15,
99
+ "video.channels": 3,
100
+ "has_audio": false
101
+ }
102
+ },
103
+ "observation.images.wrist": {
104
+ "dtype": "video",
105
+ "shape": [
106
+ 3,
107
+ 128,
108
+ 128
109
+ ],
110
+ "names": [
111
+ "channels",
112
+ "height",
113
+ "width"
114
+ ],
115
+ "info": {
116
+ "video.height": 128,
117
+ "video.width": 128,
118
+ "video.codec": "av1",
119
+ "video.pix_fmt": "yuv420p",
120
+ "video.is_depth_map": false,
121
+ "video.fps": 15,
122
+ "video.channels": 3,
123
+ "has_audio": false
124
+ }
125
+ },
126
+ "observation.state": {
127
+ "dtype": "float32",
128
+ "shape": [
129
+ 39
130
+ ],
131
+ "names": null
132
+ },
133
+ "timestamp": {
134
+ "dtype": "float32",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "frame_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "episode_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "task_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ }
168
+ }
169
+ }
170
+ ```
171
+
172
+
173
+ ## Citation
174
+
175
+ **BibTeX:**
176
+
177
+ ```bibtex
178
+ [More Information Needed]
179
+ ```