rdoshi21 commited on
Commit
d00ddcd
·
verified ·
1 Parent(s): 5f2764d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +189 -0
README.md ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "kinova-arx",
29
+ "total_episodes": 44,
30
+ "total_frames": 63492,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "fps": 10,
34
+ "splits": {
35
+ "train": "0:44"
36
+ },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "kinova_wrist_image": {
41
+ "dtype": "image",
42
+ "shape": [
43
+ 640,
44
+ 380,
45
+ 3
46
+ ],
47
+ "names": [
48
+ "height",
49
+ "width",
50
+ "channel"
51
+ ],
52
+ "fps": 10
53
+ },
54
+ "kinova_top_image": {
55
+ "dtype": "image",
56
+ "shape": [
57
+ 480,
58
+ 370,
59
+ 3
60
+ ],
61
+ "names": [
62
+ "height",
63
+ "width",
64
+ "channel"
65
+ ],
66
+ "fps": 10
67
+ },
68
+ "arx_wrist_image": {
69
+ "dtype": "image",
70
+ "shape": [
71
+ 640,
72
+ 480,
73
+ 3
74
+ ],
75
+ "names": [
76
+ "height",
77
+ "width",
78
+ "channel"
79
+ ],
80
+ "fps": 10
81
+ },
82
+ "arx_top_image": {
83
+ "dtype": "image",
84
+ "shape": [
85
+ 480,
86
+ 640,
87
+ 3
88
+ ],
89
+ "names": [
90
+ "height",
91
+ "width",
92
+ "channel"
93
+ ],
94
+ "fps": 10
95
+ },
96
+ "full_state": {
97
+ "dtype": "float32",
98
+ "shape": [
99
+ 18
100
+ ],
101
+ "names": [
102
+ "full_state"
103
+ ],
104
+ "fps": 10
105
+ },
106
+ "state": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 11
110
+ ],
111
+ "names": [
112
+ "state"
113
+ ],
114
+ "fps": 10
115
+ },
116
+ "actions": {
117
+ "dtype": "float32",
118
+ "shape": [
119
+ 11
120
+ ],
121
+ "names": [
122
+ "actions"
123
+ ],
124
+ "fps": 10
125
+ },
126
+ "prompt": {
127
+ "dtype": "string",
128
+ "names": [
129
+ "prompt"
130
+ ],
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "fps": 10
135
+ },
136
+ "timestamp": {
137
+ "dtype": "float32",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null,
142
+ "fps": 10
143
+ },
144
+ "frame_index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null,
150
+ "fps": 10
151
+ },
152
+ "episode_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null,
158
+ "fps": 10
159
+ },
160
+ "index": {
161
+ "dtype": "int64",
162
+ "shape": [
163
+ 1
164
+ ],
165
+ "names": null,
166
+ "fps": 10
167
+ },
168
+ "task_index": {
169
+ "dtype": "int64",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null,
174
+ "fps": 10
175
+ }
176
+ },
177
+ "data_files_size_in_mb": 100,
178
+ "video_files_size_in_mb": 200
179
+ }
180
+ ```
181
+
182
+
183
+ ## Citation
184
+
185
+ **BibTeX:**
186
+
187
+ ```bibtex
188
+ [More Information Needed]
189
+ ```