cadene commited on
Commit
a41166a
·
verified ·
1 Parent(s): 30ed021

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +167 -0
README.md ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - openx
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": "v3.0",
29
+ "robot_type": "aloha",
30
+ "total_episodes": 100,
31
+ "total_frames": 45000,
32
+ "total_tasks": 0,
33
+ "chunks_size": 1000,
34
+ "data_files_size_in_mb": 100,
35
+ "video_files_size_in_mb": 500,
36
+ "fps": 50.0,
37
+ "splits": {
38
+ "train": "0:100"
39
+ },
40
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
41
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
42
+ "features": {
43
+ "observation.images.top": {
44
+ "dtype": "video",
45
+ "shape": [
46
+ 480,
47
+ 640,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ],
55
+ "video_info": {
56
+ "video.fps": 50.0,
57
+ "video.codec": "av1",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "has_audio": false
61
+ }
62
+ },
63
+ "observation.state": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 14
67
+ ],
68
+ "names": {
69
+ "motors": [
70
+ "left_waist",
71
+ "left_shoulder",
72
+ "left_elbow",
73
+ "left_forearm_roll",
74
+ "left_wrist_angle",
75
+ "left_wrist_rotate",
76
+ "left_gripper",
77
+ "right_waist",
78
+ "right_shoulder",
79
+ "right_elbow",
80
+ "right_forearm_roll",
81
+ "right_wrist_angle",
82
+ "right_wrist_rotate",
83
+ "right_gripper"
84
+ ]
85
+ },
86
+ "fps": 50.0
87
+ },
88
+ "action": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 14
92
+ ],
93
+ "names": {
94
+ "motors": [
95
+ "left_waist",
96
+ "left_shoulder",
97
+ "left_elbow",
98
+ "left_forearm_roll",
99
+ "left_wrist_angle",
100
+ "left_wrist_rotate",
101
+ "left_gripper",
102
+ "right_waist",
103
+ "right_shoulder",
104
+ "right_elbow",
105
+ "right_forearm_roll",
106
+ "right_wrist_angle",
107
+ "right_wrist_rotate",
108
+ "right_gripper"
109
+ ]
110
+ },
111
+ "fps": 50.0
112
+ },
113
+ "episode_index": {
114
+ "dtype": "int64",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "frame_index": {
121
+ "dtype": "int64",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "timestamp": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "next.done": {
135
+ "dtype": "bool",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null,
140
+ "fps": 50.0
141
+ },
142
+ "index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "task_index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ }
156
+ }
157
+ }
158
+ ```
159
+
160
+
161
+ ## Citation
162
+
163
+ **BibTeX:**
164
+
165
+ ```bibtex
166
+ [More Information Needed]
167
+ ```