dureduck commited on
Commit
5c8f419
·
verified ·
1 Parent(s): 3476b90

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +179 -0
README.md ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "panda",
29
+ "total_episodes": 501,
30
+ "total_frames": 71968,
31
+ "total_tasks": 1,
32
+ "total_videos": 1002,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:501"
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.images.exterior": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 240,
46
+ 320,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "info": {
55
+ "video.height": 240,
56
+ "video.width": 320,
57
+ "video.codec": "av1",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "video.fps": 50,
61
+ "video.channels": 3,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.images.wristcam": {
66
+ "dtype": "video",
67
+ "shape": [
68
+ 240,
69
+ 320,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "height",
74
+ "width",
75
+ "channel"
76
+ ],
77
+ "info": {
78
+ "video.height": 240,
79
+ "video.width": 320,
80
+ "video.codec": "av1",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.is_depth_map": false,
83
+ "video.fps": 50,
84
+ "video.channels": 3,
85
+ "has_audio": false
86
+ }
87
+ },
88
+ "observation.ee_pose_state": {
89
+ "dtype": "float",
90
+ "shape": [
91
+ 7
92
+ ],
93
+ "names": [
94
+ "state"
95
+ ]
96
+ },
97
+ "observation.gripper_position": {
98
+ "dtype": "float",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": [
103
+ "gripper_position"
104
+ ]
105
+ },
106
+ "actions": {
107
+ "dtype": "float",
108
+ "shape": [
109
+ 8
110
+ ],
111
+ "names": [
112
+ "actions"
113
+ ]
114
+ },
115
+ "observation.velocity": {
116
+ "dtype": "float",
117
+ "shape": [
118
+ 7
119
+ ],
120
+ "names": [
121
+ "velocity"
122
+ ]
123
+ },
124
+ "prompt": {
125
+ "dtype": "string",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": [
130
+ "prompt"
131
+ ]
132
+ },
133
+ "timestamp": {
134
+ "dtype": "float32",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "frame_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "episode_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "task_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ }
168
+ }
169
+ }
170
+ ```
171
+
172
+
173
+ ## Citation
174
+
175
+ **BibTeX:**
176
+
177
+ ```bibtex
178
+ [More Information Needed]
179
+ ```