Jeongeun commited on
Commit
803fb93
·
verified ·
1 Parent(s): 5ef4844

Upload README.md with huggingface_hub

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