Tsagkas commited on
Commit
2b91652
·
verified ·
1 Parent(s): 6432c63

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +181 -0
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "so101_follower",
29
+ "total_episodes": 32,
30
+ "total_frames": 2864,
31
+ "total_tasks": 2,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:32"
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
+ "names": [
45
+ "ee.x",
46
+ "ee.y",
47
+ "ee.z",
48
+ "ee.wx",
49
+ "ee.wy",
50
+ "ee.wz",
51
+ "ee.gripper_pos"
52
+ ],
53
+ "shape": [
54
+ 7
55
+ ]
56
+ },
57
+ "observation.state": {
58
+ "dtype": "float32",
59
+ "names": [
60
+ "ee.gripper_pos",
61
+ "ee.wx",
62
+ "ee.wy",
63
+ "ee.wz",
64
+ "ee.x",
65
+ "ee.y",
66
+ "ee.z"
67
+ ],
68
+ "shape": [
69
+ 7
70
+ ]
71
+ },
72
+ "observation.images.front": {
73
+ "dtype": "video",
74
+ "shape": [
75
+ 256,
76
+ 256,
77
+ 3
78
+ ],
79
+ "names": [
80
+ "height",
81
+ "width",
82
+ "channels"
83
+ ],
84
+ "info": {
85
+ "video.height": 256,
86
+ "video.width": 256,
87
+ "video.codec": "av1",
88
+ "video.pix_fmt": "yuv420p",
89
+ "video.is_depth_map": false,
90
+ "video.fps": 10,
91
+ "video.channels": 3,
92
+ "has_audio": false
93
+ }
94
+ },
95
+ "observation.vfm_features.front": {
96
+ "dtype": "float32",
97
+ "shape": [
98
+ 16,
99
+ 16,
100
+ 768
101
+ ],
102
+ "names": null
103
+ },
104
+ "observation.skill_feature": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 1024
108
+ ],
109
+ "names": null
110
+ },
111
+ "observation.object_feature": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 1024
115
+ ],
116
+ "names": null
117
+ },
118
+ "observation.full_text_features": {
119
+ "dtype": "float32",
120
+ "shape": [
121
+ 77,
122
+ 1024
123
+ ],
124
+ "names": null
125
+ },
126
+ "observation.vlm_features.front": {
127
+ "dtype": "float32",
128
+ "shape": [
129
+ 16,
130
+ 16,
131
+ 1024
132
+ ],
133
+ "names": null
134
+ },
135
+ "timestamp": {
136
+ "dtype": "float32",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "frame_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "episode_index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ },
163
+ "task_index": {
164
+ "dtype": "int64",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "names": null
169
+ }
170
+ }
171
+ }
172
+ ```
173
+
174
+
175
+ ## Citation
176
+
177
+ **BibTeX:**
178
+
179
+ ```bibtex
180
+ [More Information Needed]
181
+ ```