pravsels commited on
Commit
eb39817
·
verified ·
1 Parent(s): d2f8510

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +201 -0
README.md ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=pravsels/eval_delock_block_tower_test2">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": "arx5_follower",
36
+ "total_episodes": 1,
37
+ "total_frames": 483,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 20,
43
+ "splits": {
44
+ "train": "0:1"
45
+ },
46
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
47
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
48
+ "features": {
49
+ "observation.state.pos": {
50
+ "dtype": "float32",
51
+ "names": [
52
+ "joint_0",
53
+ "joint_1",
54
+ "joint_2",
55
+ "joint_3",
56
+ "joint_4",
57
+ "joint_5",
58
+ "joint_6"
59
+ ],
60
+ "shape": [
61
+ 7
62
+ ]
63
+ },
64
+ "observation.state.velocity": {
65
+ "dtype": "float32",
66
+ "names": [
67
+ "joint_0",
68
+ "joint_1",
69
+ "joint_2",
70
+ "joint_3",
71
+ "joint_4",
72
+ "joint_5",
73
+ "joint_6"
74
+ ],
75
+ "shape": [
76
+ 7
77
+ ]
78
+ },
79
+ "observation.state.effort": {
80
+ "dtype": "float32",
81
+ "names": [
82
+ "joint_0",
83
+ "joint_1",
84
+ "joint_2",
85
+ "joint_3",
86
+ "joint_4",
87
+ "joint_5",
88
+ "joint_6"
89
+ ],
90
+ "shape": [
91
+ 7
92
+ ]
93
+ },
94
+ "observation.state.eef_pose": {
95
+ "dtype": "float32",
96
+ "names": [
97
+ "joint_0",
98
+ "joint_1",
99
+ "joint_2",
100
+ "joint_3",
101
+ "joint_4",
102
+ "joint_5",
103
+ "joint_6"
104
+ ],
105
+ "shape": [
106
+ 7
107
+ ]
108
+ },
109
+ "observation.images.front": {
110
+ "dtype": "video",
111
+ "shape": [
112
+ 480,
113
+ 640,
114
+ 3
115
+ ],
116
+ "names": [
117
+ "height",
118
+ "width",
119
+ "channels"
120
+ ],
121
+ "info": {
122
+ "video.height": 480,
123
+ "video.width": 640,
124
+ "video.codec": "h264",
125
+ "video.pix_fmt": "yuv420p",
126
+ "video.is_depth_map": false,
127
+ "video.fps": 20,
128
+ "video.channels": 3,
129
+ "has_audio": false
130
+ }
131
+ },
132
+ "observation.images.wrist": {
133
+ "dtype": "video",
134
+ "shape": [
135
+ 480,
136
+ 640,
137
+ 3
138
+ ],
139
+ "names": [
140
+ "height",
141
+ "width",
142
+ "channels"
143
+ ],
144
+ "info": {
145
+ "video.height": 480,
146
+ "video.width": 640,
147
+ "video.codec": "h264",
148
+ "video.pix_fmt": "yuv420p",
149
+ "video.is_depth_map": false,
150
+ "video.fps": 20,
151
+ "video.channels": 3,
152
+ "has_audio": false
153
+ }
154
+ },
155
+ "timestamp": {
156
+ "dtype": "float32",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ },
162
+ "frame_index": {
163
+ "dtype": "int64",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "names": null
168
+ },
169
+ "episode_index": {
170
+ "dtype": "int64",
171
+ "shape": [
172
+ 1
173
+ ],
174
+ "names": null
175
+ },
176
+ "index": {
177
+ "dtype": "int64",
178
+ "shape": [
179
+ 1
180
+ ],
181
+ "names": null
182
+ },
183
+ "task_index": {
184
+ "dtype": "int64",
185
+ "shape": [
186
+ 1
187
+ ],
188
+ "names": null
189
+ }
190
+ }
191
+ }
192
+ ```
193
+
194
+
195
+ ## Citation
196
+
197
+ **BibTeX:**
198
+
199
+ ```bibtex
200
+ [More Information Needed]
201
+ ```