rdoshi21 commited on
Commit
4e07e87
·
verified ·
1 Parent(s): f8e0039

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +194 -0
README.md ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - kinova-arx-yam
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.1",
29
+ "robot_type": "kinova-arx-yam",
30
+ "total_episodes": 86,
31
+ "total_frames": 153156,
32
+ "total_tasks": 3,
33
+ "total_videos": 0,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 10,
37
+ "splits": {
38
+ "train": "0:86"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "kinova_wrist_image": {
44
+ "dtype": "image",
45
+ "shape": [
46
+ 320,
47
+ 480,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ]
55
+ },
56
+ "kinova_top_image": {
57
+ "dtype": "image",
58
+ "shape": [
59
+ 480,
60
+ 480,
61
+ 3
62
+ ],
63
+ "names": [
64
+ "height",
65
+ "width",
66
+ "channel"
67
+ ]
68
+ },
69
+ "arx_wrist_image": {
70
+ "dtype": "image",
71
+ "shape": [
72
+ 640,
73
+ 480,
74
+ 3
75
+ ],
76
+ "names": [
77
+ "height",
78
+ "width",
79
+ "channel"
80
+ ]
81
+ },
82
+ "arx_top_image": {
83
+ "dtype": "image",
84
+ "shape": [
85
+ 480,
86
+ 440,
87
+ 3
88
+ ],
89
+ "names": [
90
+ "height",
91
+ "width",
92
+ "channel"
93
+ ]
94
+ },
95
+ "yam_wrist_image": {
96
+ "dtype": "image",
97
+ "shape": [
98
+ 640,
99
+ 480,
100
+ 3
101
+ ],
102
+ "names": [
103
+ "height",
104
+ "width",
105
+ "channel"
106
+ ]
107
+ },
108
+ "yam_top_image": {
109
+ "dtype": "image",
110
+ "shape": [
111
+ 480,
112
+ 480,
113
+ 3
114
+ ],
115
+ "names": [
116
+ "height",
117
+ "width",
118
+ "channel"
119
+ ]
120
+ },
121
+ "state": {
122
+ "dtype": "float32",
123
+ "shape": [
124
+ 11
125
+ ],
126
+ "names": [
127
+ "state"
128
+ ]
129
+ },
130
+ "actions": {
131
+ "dtype": "float32",
132
+ "shape": [
133
+ 11
134
+ ],
135
+ "names": [
136
+ "actions"
137
+ ]
138
+ },
139
+ "prompt": {
140
+ "dtype": "string",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": [
145
+ "prompt"
146
+ ]
147
+ },
148
+ "timestamp": {
149
+ "dtype": "float32",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "frame_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ },
162
+ "episode_index": {
163
+ "dtype": "int64",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "names": null
168
+ },
169
+ "index": {
170
+ "dtype": "int64",
171
+ "shape": [
172
+ 1
173
+ ],
174
+ "names": null
175
+ },
176
+ "task_index": {
177
+ "dtype": "int64",
178
+ "shape": [
179
+ 1
180
+ ],
181
+ "names": null
182
+ }
183
+ }
184
+ }
185
+ ```
186
+
187
+
188
+ ## Citation
189
+
190
+ **BibTeX:**
191
+
192
+ ```bibtex
193
+ [More Information Needed]
194
+ ```