Deason11 commited on
Commit
3890fd5
·
verified ·
1 Parent(s): 7a7fdbd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +171 -0
README.md ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - tutorial
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": "lekiwi",
30
+ "total_episodes": 2,
31
+ "total_frames": 246,
32
+ "total_tasks": 1,
33
+ "total_videos": 4,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:2"
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
+ "action": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 10
47
+ ],
48
+ "names": [
49
+ "shoulder_pan",
50
+ "shoulder_lift",
51
+ "elbow_flex",
52
+ "wrist_flex",
53
+ "wrist_roll",
54
+ "wrist_angle",
55
+ "gripper",
56
+ "x_mm",
57
+ "y_mm",
58
+ "theta"
59
+ ]
60
+ },
61
+ "observation.state": {
62
+ "dtype": "float32",
63
+ "shape": [
64
+ 10
65
+ ],
66
+ "names": [
67
+ "shoulder_pan",
68
+ "shoulder_lift",
69
+ "elbow_flex",
70
+ "wrist_flex",
71
+ "wrist_roll",
72
+ "wrist_angle",
73
+ "gripper",
74
+ "x_mm",
75
+ "y_mm",
76
+ "theta"
77
+ ]
78
+ },
79
+ "observation.images.L_OverheadCamera": {
80
+ "dtype": "video",
81
+ "shape": [
82
+ 480,
83
+ 640,
84
+ 3
85
+ ],
86
+ "names": [
87
+ "height",
88
+ "width",
89
+ "channels"
90
+ ],
91
+ "info": {
92
+ "video.fps": 30.0,
93
+ "video.height": 480,
94
+ "video.width": 640,
95
+ "video.channels": 3,
96
+ "video.codec": "h264",
97
+ "video.pix_fmt": "yuv420p",
98
+ "video.is_depth_map": false,
99
+ "has_audio": false
100
+ }
101
+ },
102
+ "observation.images.wrist": {
103
+ "dtype": "video",
104
+ "shape": [
105
+ 480,
106
+ 640,
107
+ 3
108
+ ],
109
+ "names": [
110
+ "height",
111
+ "width",
112
+ "channels"
113
+ ],
114
+ "info": {
115
+ "video.fps": 30.0,
116
+ "video.height": 480,
117
+ "video.width": 640,
118
+ "video.channels": 3,
119
+ "video.codec": "h264",
120
+ "video.pix_fmt": "yuv420p",
121
+ "video.is_depth_map": false,
122
+ "has_audio": false
123
+ }
124
+ },
125
+ "timestamp": {
126
+ "dtype": "float32",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "frame_index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "episode_index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ },
146
+ "index": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
+ },
153
+ "task_index": {
154
+ "dtype": "int64",
155
+ "shape": [
156
+ 1
157
+ ],
158
+ "names": null
159
+ }
160
+ }
161
+ }
162
+ ```
163
+
164
+
165
+ ## Citation
166
+
167
+ **BibTeX:**
168
+
169
+ ```bibtex
170
+ [More Information Needed]
171
+ ```