RainyBot commited on
Commit
d009f9c
·
verified ·
1 Parent(s): 3a38e6d

Upload README.md with huggingface_hub

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": "aloha",
29
+ "total_episodes": 75,
30
+ "total_frames": 21576,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 15,
36
+ "splits": {
37
+ "train": "0:75"
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
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 16
46
+ ],
47
+ "names": [
48
+ [
49
+ "right_waist",
50
+ "right_shoulder",
51
+ "right_elbow",
52
+ "right_forearm_roll",
53
+ "right_wrist_angle",
54
+ "right_wrist_rotate",
55
+ "right_extra",
56
+ "right_gripper",
57
+ "left_waist",
58
+ "left_shoulder",
59
+ "left_elbow",
60
+ "left_forearm_roll",
61
+ "left_wrist_angle",
62
+ "left_wrist_rotate",
63
+ "left_extra",
64
+ "left_gripper"
65
+ ]
66
+ ]
67
+ },
68
+ "action": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 16
72
+ ],
73
+ "names": [
74
+ [
75
+ "right_waist",
76
+ "right_shoulder",
77
+ "right_elbow",
78
+ "right_forearm_roll",
79
+ "right_wrist_angle",
80
+ "right_wrist_rotate",
81
+ "right_extra",
82
+ "right_gripper",
83
+ "left_waist",
84
+ "left_shoulder",
85
+ "left_elbow",
86
+ "left_forearm_roll",
87
+ "left_wrist_angle",
88
+ "left_wrist_rotate",
89
+ "left_extra",
90
+ "left_gripper"
91
+ ]
92
+ ]
93
+ },
94
+ "observation.images.cam_high": {
95
+ "dtype": "image",
96
+ "shape": [
97
+ 3,
98
+ 480,
99
+ 640
100
+ ],
101
+ "names": [
102
+ "channels",
103
+ "height",
104
+ "width"
105
+ ]
106
+ },
107
+ "observation.images.cam_left_wrist": {
108
+ "dtype": "image",
109
+ "shape": [
110
+ 3,
111
+ 480,
112
+ 640
113
+ ],
114
+ "names": [
115
+ "channels",
116
+ "height",
117
+ "width"
118
+ ]
119
+ },
120
+ "observation.images.cam_right_wrist": {
121
+ "dtype": "image",
122
+ "shape": [
123
+ 3,
124
+ 480,
125
+ 640
126
+ ],
127
+ "names": [
128
+ "channels",
129
+ "height",
130
+ "width"
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
+ ```