JiaheXu98 commited on
Commit
85ec851
·
verified ·
1 Parent(s): 3531037

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +175 -0
README.md ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0",
28
+ "robot_type": "mobile_aloha",
29
+ "total_episodes": 48,
30
+ "total_frames": 5819,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:48"
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
+ 14
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_gripper",
56
+ "left_waist",
57
+ "left_shoulder",
58
+ "left_elbow",
59
+ "left_forearm_roll",
60
+ "left_wrist_angle",
61
+ "left_wrist_rotate",
62
+ "left_gripper"
63
+ ]
64
+ ]
65
+ },
66
+ "action": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 14
70
+ ],
71
+ "names": [
72
+ [
73
+ "right_waist",
74
+ "right_shoulder",
75
+ "right_elbow",
76
+ "right_forearm_roll",
77
+ "right_wrist_angle",
78
+ "right_wrist_rotate",
79
+ "right_gripper",
80
+ "left_waist",
81
+ "left_shoulder",
82
+ "left_elbow",
83
+ "left_forearm_roll",
84
+ "left_wrist_angle",
85
+ "left_wrist_rotate",
86
+ "left_gripper"
87
+ ]
88
+ ]
89
+ },
90
+ "observation.images.cam_high": {
91
+ "dtype": "image",
92
+ "shape": [
93
+ 3,
94
+ 256,
95
+ 256
96
+ ],
97
+ "names": [
98
+ "channels",
99
+ "height",
100
+ "width"
101
+ ]
102
+ },
103
+ "observation.images.cam_left_wrist": {
104
+ "dtype": "image",
105
+ "shape": [
106
+ 3,
107
+ 256,
108
+ 256
109
+ ],
110
+ "names": [
111
+ "channels",
112
+ "height",
113
+ "width"
114
+ ]
115
+ },
116
+ "observation.images.cam_right_wrist": {
117
+ "dtype": "image",
118
+ "shape": [
119
+ 3,
120
+ 256,
121
+ 256
122
+ ],
123
+ "names": [
124
+ "channels",
125
+ "height",
126
+ "width"
127
+ ]
128
+ },
129
+ "timestamp": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "frame_index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "episode_index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ },
157
+ "task_index": {
158
+ "dtype": "int64",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "names": null
163
+ }
164
+ }
165
+ }
166
+ ```
167
+
168
+
169
+ ## Citation
170
+
171
+ **BibTeX:**
172
+
173
+ ```bibtex
174
+ [More Information Needed]
175
+ ```