shantanu-tr commited on
Commit
c92b3c5
·
verified ·
1 Parent(s): f854536

Upload README.md with huggingface_hub

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