Robotics
LeRobot
Safetensors
multi_task_dit
2sin0 commited on
Commit
72d7750
·
verified ·
1 Parent(s): dded95d

Upload DataProcessorPipeline

Browse files
policy_preprocessor.json ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_preprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "rename_observations_processor",
6
+ "config": {
7
+ "rename_map": {}
8
+ }
9
+ },
10
+ {
11
+ "registry_name": "to_batch_processor",
12
+ "config": {}
13
+ },
14
+ {
15
+ "registry_name": "tokenizer_processor",
16
+ "config": {
17
+ "max_length": 77,
18
+ "task_key": "task",
19
+ "padding_side": "right",
20
+ "padding": "max_length",
21
+ "truncation": true,
22
+ "tokenizer_name": "openai/clip-vit-base-patch16"
23
+ }
24
+ },
25
+ {
26
+ "registry_name": "device_processor",
27
+ "config": {
28
+ "device": "cuda",
29
+ "float_dtype": null
30
+ }
31
+ },
32
+ {
33
+ "registry_name": "normalizer_processor",
34
+ "config": {
35
+ "eps": 1e-08,
36
+ "features": {
37
+ "observation.images.head_rgb": {
38
+ "type": "VISUAL",
39
+ "shape": [
40
+ 3,
41
+ 720,
42
+ 1280
43
+ ]
44
+ },
45
+ "observation.images.head_right_rgb": {
46
+ "type": "VISUAL",
47
+ "shape": [
48
+ 3,
49
+ 720,
50
+ 1280
51
+ ]
52
+ },
53
+ "observation.images.left_wrist_rgb": {
54
+ "type": "VISUAL",
55
+ "shape": [
56
+ 3,
57
+ 360,
58
+ 640
59
+ ]
60
+ },
61
+ "observation.images.right_wrist_rgb": {
62
+ "type": "VISUAL",
63
+ "shape": [
64
+ 3,
65
+ 360,
66
+ 640
67
+ ]
68
+ },
69
+ "observation.state.left_arm": {
70
+ "type": "STATE",
71
+ "shape": [
72
+ 6
73
+ ]
74
+ },
75
+ "observation.state.left_arm.velocities": {
76
+ "type": "STATE",
77
+ "shape": [
78
+ 6
79
+ ]
80
+ },
81
+ "observation.state.right_arm": {
82
+ "type": "STATE",
83
+ "shape": [
84
+ 6
85
+ ]
86
+ },
87
+ "observation.state.right_arm.velocities": {
88
+ "type": "STATE",
89
+ "shape": [
90
+ 6
91
+ ]
92
+ },
93
+ "observation.state.chassis.imu": {
94
+ "type": "STATE",
95
+ "shape": [
96
+ 10
97
+ ]
98
+ },
99
+ "observation.state.chassis": {
100
+ "type": "STATE",
101
+ "shape": [
102
+ 3
103
+ ]
104
+ },
105
+ "observation.state.chassis.velocities": {
106
+ "type": "STATE",
107
+ "shape": [
108
+ 3
109
+ ]
110
+ },
111
+ "observation.state.torso": {
112
+ "type": "STATE",
113
+ "shape": [
114
+ 4
115
+ ]
116
+ },
117
+ "observation.state.torso.velocities": {
118
+ "type": "STATE",
119
+ "shape": [
120
+ 4
121
+ ]
122
+ },
123
+ "observation.state.left_gripper": {
124
+ "type": "STATE",
125
+ "shape": [
126
+ 1
127
+ ]
128
+ },
129
+ "observation.state.right_gripper": {
130
+ "type": "STATE",
131
+ "shape": [
132
+ 1
133
+ ]
134
+ },
135
+ "observation.state.left_ee_pose": {
136
+ "type": "STATE",
137
+ "shape": [
138
+ 7
139
+ ]
140
+ },
141
+ "observation.state.right_ee_pose": {
142
+ "type": "STATE",
143
+ "shape": [
144
+ 7
145
+ ]
146
+ },
147
+ "observation.state": {
148
+ "type": "STATE",
149
+ "shape": [
150
+ 14
151
+ ]
152
+ },
153
+ "action.left_gripper": {
154
+ "type": "ACTION",
155
+ "shape": [
156
+ 1
157
+ ]
158
+ },
159
+ "action.right_gripper": {
160
+ "type": "ACTION",
161
+ "shape": [
162
+ 1
163
+ ]
164
+ },
165
+ "action.chassis.velocities": {
166
+ "type": "ACTION",
167
+ "shape": [
168
+ 6
169
+ ]
170
+ },
171
+ "action.torso.velocities": {
172
+ "type": "ACTION",
173
+ "shape": [
174
+ 6
175
+ ]
176
+ },
177
+ "action.left_arm": {
178
+ "type": "ACTION",
179
+ "shape": [
180
+ 6
181
+ ]
182
+ },
183
+ "action.right_arm": {
184
+ "type": "ACTION",
185
+ "shape": [
186
+ 6
187
+ ]
188
+ },
189
+ "action": {
190
+ "type": "ACTION",
191
+ "shape": [
192
+ 14
193
+ ]
194
+ }
195
+ },
196
+ "norm_map": {
197
+ "VISUAL": "MEAN_STD",
198
+ "STATE": "MIN_MAX",
199
+ "ACTION": "MIN_MAX"
200
+ }
201
+ },
202
+ "state_file": "policy_preprocessor_step_4_normalizer_processor.safetensors"
203
+ }
204
+ ]
205
+ }
policy_preprocessor_step_4_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa492739f23f5ae0ed08ea40b126c007979a6f515fa61f923c462967b0aaf093
3
+ size 13944