pu9730962 commited on
Commit
1b5cb52
·
verified ·
1 Parent(s): 9b2897d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +175 -3
README.md CHANGED
@@ -1,3 +1,175 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - lerobot
5
+ - robotics
6
+ configs:
7
+ - config_name: default
8
+ data_files:
9
+ - split: train
10
+ path: data/chunk-000/*.parquet
11
+ ---
12
+
13
+ # Sandblasting Sim Dataset v2.1
14
+
15
+ 這是一個專為 **UR10e** 機器人設計的模擬噴砂(Sandblasting)訓練資料集,使用 LeRobot v2.1 格式。
16
+
17
+ ## Dataset Summary
18
+ - **Robot Type:** UR10e
19
+ - **Total Episodes:** 2
20
+ - **Total Frames:** 2042
21
+ - **FPS:** 30
22
+ - **Modality:** Video, Robot States (6-DoF)
23
+
24
+ ## Dataset Structure
25
+
26
+ ### meta/info.json
27
+ ```json
28
+ {
29
+ "codebase_version": "v2.1",
30
+ "robot_type": "ur10e",
31
+ "total_episodes": 99,
32
+ "total_frames": 86454,
33
+ "total_tasks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:99"
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.images.side": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 224,
46
+ 224,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channels"
53
+ ],
54
+ "info": {
55
+ "video.height": 224,
56
+ "video.width": 224,
57
+ "video.codec": "av1",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "video.fps": 30,
61
+ "video.channels": 3,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.images.front": {
66
+ "dtype": "video",
67
+ "shape": [
68
+ 224,
69
+ 224,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "height",
74
+ "width",
75
+ "channels"
76
+ ],
77
+ "info": {
78
+ "video.height": 224,
79
+ "video.width": 224,
80
+ "video.codec": "av1",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.is_depth_map": false,
83
+ "video.fps": 30,
84
+ "video.channels": 3,
85
+ "has_audio": false
86
+ }
87
+ },
88
+ "observation.state": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 6
92
+ ],
93
+ "names": [
94
+ "position.shoulder_pan_joint",
95
+ "position.shoulder_lift_joint",
96
+ "position.elbow_joint",
97
+ "position.wrist_1_joint",
98
+ "position.wrist_2_joint",
99
+ "position.wrist_3_joint"
100
+ ]
101
+ },
102
+ "action": {
103
+ "dtype": "float32",
104
+ "shape": [
105
+ 6
106
+ ],
107
+ "names": [
108
+ "position.shoulder_pan_joint",
109
+ "position.shoulder_lift_joint",
110
+ "position.elbow_joint",
111
+ "position.wrist_1_joint",
112
+ "position.wrist_2_joint",
113
+ "position.wrist_3_joint"
114
+ ]
115
+ },
116
+ "is_first": {
117
+ "dtype": "bool",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ },
123
+ "is_last": {
124
+ "dtype": "bool",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "is_terminal": {
131
+ "dtype": "bool",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "timestamp": {
138
+ "dtype": "float32",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "frame_index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "episode_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ },
165
+ "task_index": {
166
+ "dtype": "int64",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
+ }
172
+ },
173
+ "total_chunks": 1,
174
+ "total_videos": 198
175
+ }