usvla commited on
Commit
afa73d5
·
verified ·
1 Parent(s): 42b09f6

Upload README.md with huggingface_hub

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