ykorkmaz commited on
Commit
e9cb115
·
verified ·
1 Parent(s): d1e346b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +184 -0
README.md ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "generic",
29
+ "total_episodes": 101,
30
+ "total_frames": 21812,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30.0,
36
+ "splits": {
37
+ "train": "0:101"
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
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 14
46
+ ],
47
+ "names": [
48
+ "dim_0",
49
+ "dim_1",
50
+ "dim_2",
51
+ "dim_3",
52
+ "dim_4",
53
+ "dim_5",
54
+ "dim_6",
55
+ "dim_7",
56
+ "dim_8",
57
+ "dim_9",
58
+ "dim_10",
59
+ "dim_11",
60
+ "dim_12",
61
+ "dim_13"
62
+ ]
63
+ },
64
+ "action": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 14
68
+ ],
69
+ "names": [
70
+ "action_0",
71
+ "action_1",
72
+ "action_2",
73
+ "action_3",
74
+ "action_4",
75
+ "action_5",
76
+ "action_6",
77
+ "action_7",
78
+ "action_8",
79
+ "action_9",
80
+ "action_10",
81
+ "action_11",
82
+ "action_12",
83
+ "action_13"
84
+ ]
85
+ },
86
+ "observation.images.cam_high": {
87
+ "dtype": "image",
88
+ "shape": [
89
+ 256,
90
+ 341,
91
+ 3
92
+ ],
93
+ "names": [
94
+ "height",
95
+ "width",
96
+ "channels"
97
+ ]
98
+ },
99
+ "observation.images.cam_left_wrist": {
100
+ "dtype": "image",
101
+ "shape": [
102
+ 256,
103
+ 341,
104
+ 3
105
+ ],
106
+ "names": [
107
+ "height",
108
+ "width",
109
+ "channels"
110
+ ]
111
+ },
112
+ "observation.images.cam_low": {
113
+ "dtype": "image",
114
+ "shape": [
115
+ 256,
116
+ 341,
117
+ 3
118
+ ],
119
+ "names": [
120
+ "height",
121
+ "width",
122
+ "channels"
123
+ ]
124
+ },
125
+ "observation.images.cam_right_wrist": {
126
+ "dtype": "image",
127
+ "shape": [
128
+ 256,
129
+ 341,
130
+ 3
131
+ ],
132
+ "names": [
133
+ "height",
134
+ "width",
135
+ "channels"
136
+ ]
137
+ },
138
+ "timestamp": {
139
+ "dtype": "float32",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "frame_index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "episode_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ },
159
+ "index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ },
166
+ "task_index": {
167
+ "dtype": "int64",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
+ }
173
+ }
174
+ }
175
+ ```
176
+
177
+
178
+ ## Citation
179
+
180
+ **BibTeX:**
181
+
182
+ ```bibtex
183
+ [More Information Needed]
184
+ ```