rdoshi21 commited on
Commit
03b20c3
·
verified ·
1 Parent(s): 8906c86

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
+ - ur5
8
+ - panda
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": "ur5-panda",
31
+ "total_episodes": 50,
32
+ "total_frames": 11986,
33
+ "total_tasks": 1,
34
+ "total_videos": 0,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 10,
38
+ "splits": {
39
+ "train": "0:50"
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
+ "top_image": {
45
+ "dtype": "image",
46
+ "shape": [
47
+ 240,
48
+ 320,
49
+ 3
50
+ ],
51
+ "names": [
52
+ "height",
53
+ "width",
54
+ "channel"
55
+ ]
56
+ },
57
+ "wrist_image": {
58
+ "dtype": "image",
59
+ "shape": [
60
+ 240,
61
+ 320,
62
+ 3
63
+ ],
64
+ "names": [
65
+ "height",
66
+ "width",
67
+ "channel"
68
+ ]
69
+ },
70
+ "ur5_wrist_image": {
71
+ "dtype": "image",
72
+ "shape": [
73
+ 240,
74
+ 320,
75
+ 3
76
+ ],
77
+ "names": [
78
+ "height",
79
+ "width",
80
+ "channel"
81
+ ]
82
+ },
83
+ "panda_wrist_image": {
84
+ "dtype": "image",
85
+ "shape": [
86
+ 240,
87
+ 320,
88
+ 3
89
+ ],
90
+ "names": [
91
+ "height",
92
+ "width",
93
+ "channel"
94
+ ]
95
+ },
96
+ "robot_state": {
97
+ "dtype": "float32",
98
+ "shape": [
99
+ 9
100
+ ],
101
+ "names": [
102
+ "robot_state"
103
+ ]
104
+ },
105
+ "full_state": {
106
+ "dtype": "float32",
107
+ "shape": [
108
+ 17
109
+ ],
110
+ "names": [
111
+ "full_state"
112
+ ]
113
+ },
114
+ "actions": {
115
+ "dtype": "float32",
116
+ "shape": [
117
+ 9
118
+ ],
119
+ "names": [
120
+ "actions"
121
+ ]
122
+ },
123
+ "prompt": {
124
+ "dtype": "string",
125
+ "names": [
126
+ "prompt"
127
+ ],
128
+ "shape": [
129
+ 1
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
+ ```