tinkhireeva commited on
Commit
81c92b0
·
verified ·
1 Parent(s): ba953c3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +173 -0
README.md ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=kd-forge/aloha_sim_transfer_cube_insertion">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": "aloha",
36
+ "total_episodes": 200,
37
+ "total_frames": 85000,
38
+ "total_tasks": 2,
39
+ "chunks_size": 1000000,
40
+ "data_files_size_in_mb": 10000,
41
+ "video_files_size_in_mb": 50000,
42
+ "fps": 50,
43
+ "splits": {
44
+ "train": "0:200"
45
+ },
46
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
47
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
48
+ "features": {
49
+ "observation.images.top": {
50
+ "dtype": "video",
51
+ "shape": [
52
+ 480,
53
+ 640,
54
+ 3
55
+ ],
56
+ "names": [
57
+ "height",
58
+ "width",
59
+ "channel"
60
+ ],
61
+ "video_info": {
62
+ "video.fps": 50.0,
63
+ "video.codec": "av1",
64
+ "video.pix_fmt": "yuv420p",
65
+ "video.is_depth_map": false,
66
+ "has_audio": false
67
+ }
68
+ },
69
+ "observation.state": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 14
73
+ ],
74
+ "names": {
75
+ "motors": [
76
+ "left_waist",
77
+ "left_shoulder",
78
+ "left_elbow",
79
+ "left_forearm_roll",
80
+ "left_wrist_angle",
81
+ "left_wrist_rotate",
82
+ "left_gripper",
83
+ "right_waist",
84
+ "right_shoulder",
85
+ "right_elbow",
86
+ "right_forearm_roll",
87
+ "right_wrist_angle",
88
+ "right_wrist_rotate",
89
+ "right_gripper"
90
+ ]
91
+ },
92
+ "fps": 50
93
+ },
94
+ "action": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 14
98
+ ],
99
+ "names": {
100
+ "motors": [
101
+ "left_waist",
102
+ "left_shoulder",
103
+ "left_elbow",
104
+ "left_forearm_roll",
105
+ "left_wrist_angle",
106
+ "left_wrist_rotate",
107
+ "left_gripper",
108
+ "right_waist",
109
+ "right_shoulder",
110
+ "right_elbow",
111
+ "right_forearm_roll",
112
+ "right_wrist_angle",
113
+ "right_wrist_rotate",
114
+ "right_gripper"
115
+ ]
116
+ },
117
+ "fps": 50
118
+ },
119
+ "episode_index": {
120
+ "dtype": "int64",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "frame_index": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "timestamp": {
134
+ "dtype": "float32",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "next.done": {
141
+ "dtype": "bool",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null,
146
+ "fps": 50
147
+ },
148
+ "index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "task_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ }
162
+ }
163
+ }
164
+ ```
165
+
166
+
167
+ ## Citation
168
+
169
+ **BibTeX:**
170
+
171
+ ```bibtex
172
+ [More Information Needed]
173
+ ```