Jeongeun commited on
Commit
0ccac35
·
verified ·
1 Parent(s): 1865168

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +191 -0
README.md ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "omy",
29
+ "total_episodes": 100,
30
+ "total_frames": 28809,
31
+ "total_tasks": 6,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 20,
36
+ "splits": {
37
+ "train": "0:100"
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
+ "image": {
43
+ "dtype": "image",
44
+ "shape": [
45
+ 256,
46
+ 256,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channels"
53
+ ]
54
+ },
55
+ "wrist_image": {
56
+ "dtype": "image",
57
+ "shape": [
58
+ 256,
59
+ 256,
60
+ 3
61
+ ],
62
+ "names": [
63
+ "height",
64
+ "width",
65
+ "channel"
66
+ ]
67
+ },
68
+ "front_image": {
69
+ "dtype": "image",
70
+ "shape": [
71
+ 256,
72
+ 256,
73
+ 3
74
+ ],
75
+ "names": [
76
+ "height",
77
+ "width",
78
+ "channel"
79
+ ]
80
+ },
81
+ "state": {
82
+ "dtype": "float32",
83
+ "shape": [
84
+ 10
85
+ ],
86
+ "names": [
87
+ "state"
88
+ ]
89
+ },
90
+ "action": {
91
+ "dtype": "float32",
92
+ "shape": [
93
+ 7
94
+ ],
95
+ "names": [
96
+ "action"
97
+ ]
98
+ },
99
+ "obj_pose": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 10,
103
+ 6
104
+ ],
105
+ "names": [
106
+ "obj_pose"
107
+ ]
108
+ },
109
+ "obj_names": {
110
+ "dtype": "string",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": [
115
+ "obj_names"
116
+ ]
117
+ },
118
+ "config_file_name": {
119
+ "dtype": "string",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": [
124
+ "file_name"
125
+ ]
126
+ },
127
+ "fail_signal": {
128
+ "dtype": "bool",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": [
133
+ "fail_signal"
134
+ ]
135
+ },
136
+ "guide_line": {
137
+ "dtype": "string",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": [
142
+ "guide_line"
143
+ ]
144
+ },
145
+ "timestamp": {
146
+ "dtype": "float32",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "frame_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ },
159
+ "episode_index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ },
166
+ "index": {
167
+ "dtype": "int64",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
+ },
173
+ "task_index": {
174
+ "dtype": "int64",
175
+ "shape": [
176
+ 1
177
+ ],
178
+ "names": null
179
+ }
180
+ }
181
+ }
182
+ ```
183
+
184
+
185
+ ## Citation
186
+
187
+ **BibTeX:**
188
+
189
+ ```bibtex
190
+ [More Information Needed]
191
+ ```