abhifoo commited on
Commit
7ba784e
·
verified ·
1 Parent(s): d7451d2

Create README.md

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": "lekiwi_client",
29
+ "total_episodes": 45,
30
+ "total_frames": 19546,
31
+ "total_tasks": 1,
32
+ "total_videos": 135,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:45"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 3
46
+ ],
47
+ "names": [
48
+ "x.vel",
49
+ "y.vel",
50
+ "theta.vel"
51
+ ]
52
+ },
53
+ "observation.state": {
54
+ "dtype": "float32",
55
+ "shape": [
56
+ 3
57
+ ],
58
+ "names": [
59
+ "x.vel",
60
+ "y.vel",
61
+ "theta.vel"
62
+ ]
63
+ },
64
+ "observation.images.front_L": {
65
+ "dtype": "video",
66
+ "shape": [
67
+ 800,
68
+ 1280,
69
+ 3
70
+ ],
71
+ "names": [
72
+ "height",
73
+ "width",
74
+ "channels"
75
+ ],
76
+ "info": {
77
+ "video.height": 800,
78
+ "video.width": 1280,
79
+ "video.codec": "av1",
80
+ "video.pix_fmt": "yuv420p",
81
+ "video.is_depth_map": false,
82
+ "video.fps": 30,
83
+ "video.channels": 3,
84
+ "has_audio": false
85
+ }
86
+ },
87
+ "observation.images.front_R": {
88
+ "dtype": "video",
89
+ "shape": [
90
+ 800,
91
+ 1280,
92
+ 3
93
+ ],
94
+ "names": [
95
+ "height",
96
+ "width",
97
+ "channels"
98
+ ],
99
+ "info": {
100
+ "video.height": 800,
101
+ "video.width": 1280,
102
+ "video.codec": "av1",
103
+ "video.pix_fmt": "yuv420p",
104
+ "video.is_depth_map": false,
105
+ "video.fps": 30,
106
+ "video.channels": 3,
107
+ "has_audio": false
108
+ }
109
+ },
110
+ "observation.images.wrist": {
111
+ "dtype": "video",
112
+ "shape": [
113
+ 640,
114
+ 480,
115
+ 3
116
+ ],
117
+ "names": [
118
+ "height",
119
+ "width",
120
+ "channels"
121
+ ],
122
+ "info": {
123
+ "video.height": 640,
124
+ "video.width": 480,
125
+ "video.codec": "av1",
126
+ "video.pix_fmt": "yuv420p",
127
+ "video.is_depth_map": false,
128
+ "video.fps": 30,
129
+ "video.channels": 3,
130
+ "has_audio": false
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
+ ```