Jeongeun commited on
Commit
dd54b5e
·
verified ·
1 Parent(s): a221d7c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +178 -0
README.md ADDED
@@ -0,0 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 60,
30
+ "total_frames": 20306,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 50.0,
36
+ "splits": {
37
+ "train": "0:60"
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
+ 13
72
+ ],
73
+ "names": [
74
+ "state"
75
+ ]
76
+ },
77
+ "action": {
78
+ "dtype": "float32",
79
+ "shape": [
80
+ 8
81
+ ],
82
+ "names": [
83
+ "action"
84
+ ]
85
+ },
86
+ "env.obj_pose": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 10,
90
+ 6
91
+ ],
92
+ "names": [
93
+ "obj_pose"
94
+ ]
95
+ },
96
+ "env.obj_names": {
97
+ "dtype": "string",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": [
102
+ "obj_names"
103
+ ]
104
+ },
105
+ "env.obj_q_names": {
106
+ "dtype": "string",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": [
111
+ "obj_q_names"
112
+ ]
113
+ },
114
+ "env.obj_q_states": {
115
+ "dtype": "float32",
116
+ "shape": [
117
+ 10
118
+ ],
119
+ "names": [
120
+ "obj_q_states"
121
+ ]
122
+ },
123
+ "env.config_file_name": {
124
+ "dtype": "string",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": [
129
+ "file_name"
130
+ ]
131
+ },
132
+ "timestamp": {
133
+ "dtype": "float32",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "frame_index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ },
146
+ "episode_index": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
+ },
153
+ "index": {
154
+ "dtype": "int64",
155
+ "shape": [
156
+ 1
157
+ ],
158
+ "names": null
159
+ },
160
+ "task_index": {
161
+ "dtype": "int64",
162
+ "shape": [
163
+ 1
164
+ ],
165
+ "names": null
166
+ }
167
+ }
168
+ }
169
+ ```
170
+
171
+
172
+ ## Citation
173
+
174
+ **BibTeX:**
175
+
176
+ ```bibtex
177
+ [More Information Needed]
178
+ ```