Robotics
LeRobot
Safetensors
act
lukasheuer commited on
Commit
cd0bf3a
·
verified ·
1 Parent(s): 23e6edf

Upload DataProcessorPipeline

Browse files
policy_preprocessor.json ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_preprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "robco_preprocessor",
6
+ "config": {
7
+ "config": {
8
+ "observation": {
9
+ "images": {
10
+ "head": null,
11
+ "left_arm": null,
12
+ "right_arm": null
13
+ },
14
+ "state": {
15
+ "left_arm.pose": {
16
+ "rotation": "6d"
17
+ },
18
+ "right_arm.pose": {
19
+ "rotation": "6d"
20
+ },
21
+ "left_arm.gripper": null,
22
+ "right_arm.gripper": null
23
+ }
24
+ },
25
+ "action": {
26
+ "left_arm.gripper": {
27
+ "mode": "gripper_bin",
28
+ "rotation": null
29
+ },
30
+ "right_arm.gripper": {
31
+ "mode": "gripper_bin",
32
+ "rotation": null
33
+ },
34
+ "left_arm.pose": {
35
+ "mode": "pose_relative",
36
+ "rotation": "6d"
37
+ },
38
+ "right_arm.pose": {
39
+ "mode": "pose_relative",
40
+ "rotation": "6d"
41
+ }
42
+ }
43
+ },
44
+ "obs_input_axes": [
45
+ "right_arm.pose.x",
46
+ "right_arm.pose.y",
47
+ "right_arm.pose.z",
48
+ "right_arm.pose.qx",
49
+ "right_arm.pose.qy",
50
+ "right_arm.pose.qz",
51
+ "right_arm.pose.qw",
52
+ "left_arm.pose.x",
53
+ "left_arm.pose.y",
54
+ "left_arm.pose.z",
55
+ "left_arm.pose.qx",
56
+ "left_arm.pose.qy",
57
+ "left_arm.pose.qz",
58
+ "left_arm.pose.qw",
59
+ "right_arm.gripper",
60
+ "left_arm.gripper",
61
+ "right_arm.joints.0",
62
+ "right_arm.joints.1",
63
+ "right_arm.joints.2",
64
+ "right_arm.joints.3",
65
+ "right_arm.joints.4",
66
+ "right_arm.joints.5",
67
+ "right_arm.joints.6",
68
+ "left_arm.joints.0",
69
+ "left_arm.joints.1",
70
+ "left_arm.joints.2",
71
+ "left_arm.joints.3",
72
+ "left_arm.joints.4",
73
+ "left_arm.joints.5",
74
+ "left_arm.joints.6"
75
+ ],
76
+ "action_input_axes": [
77
+ "right_arm.pose.x",
78
+ "right_arm.pose.y",
79
+ "right_arm.pose.z",
80
+ "right_arm.pose.qx",
81
+ "right_arm.pose.qy",
82
+ "right_arm.pose.qz",
83
+ "right_arm.pose.qw",
84
+ "right_arm.gripper",
85
+ "left_arm.pose.x",
86
+ "left_arm.pose.y",
87
+ "left_arm.pose.z",
88
+ "left_arm.pose.qx",
89
+ "left_arm.pose.qy",
90
+ "left_arm.pose.qz",
91
+ "left_arm.pose.qw",
92
+ "left_arm.gripper"
93
+ ]
94
+ }
95
+ },
96
+ {
97
+ "registry_name": "delta_actions_processor",
98
+ "config": {
99
+ "enabled": true,
100
+ "exclude_joints": [],
101
+ "action_names": null,
102
+ "relative_action_blocks": [
103
+ {
104
+ "action_offset": 2,
105
+ "action_len": 9
106
+ },
107
+ {
108
+ "action_offset": 11,
109
+ "action_len": 9
110
+ }
111
+ ]
112
+ }
113
+ },
114
+ {
115
+ "registry_name": "rename_observations_processor",
116
+ "config": {
117
+ "rename_map": {}
118
+ }
119
+ },
120
+ {
121
+ "registry_name": "to_batch_processor",
122
+ "config": {}
123
+ },
124
+ {
125
+ "registry_name": "device_processor",
126
+ "config": {
127
+ "device": "cuda",
128
+ "float_dtype": null
129
+ }
130
+ },
131
+ {
132
+ "registry_name": "normalizer_processor",
133
+ "config": {
134
+ "eps": 1e-08,
135
+ "features": {
136
+ "observation.state": {
137
+ "type": "STATE",
138
+ "shape": [
139
+ 20
140
+ ]
141
+ },
142
+ "observation.images.right_arm.cam_1.image_color": {
143
+ "type": "VISUAL",
144
+ "shape": [
145
+ 3,
146
+ 480,
147
+ 480
148
+ ]
149
+ },
150
+ "observation.images.left_arm.cam_1.image_color": {
151
+ "type": "VISUAL",
152
+ "shape": [
153
+ 3,
154
+ 480,
155
+ 480
156
+ ]
157
+ },
158
+ "observation.images.head.cam_1.color.image_raw": {
159
+ "type": "VISUAL",
160
+ "shape": [
161
+ 3,
162
+ 480,
163
+ 480
164
+ ]
165
+ },
166
+ "action": {
167
+ "type": "ACTION",
168
+ "shape": [
169
+ 20
170
+ ]
171
+ }
172
+ },
173
+ "norm_map": {
174
+ "ACTION": "MEAN_STD",
175
+ "STATE": "MEAN_STD",
176
+ "VISUAL": "IDENTITY"
177
+ }
178
+ },
179
+ "state_file": "policy_preprocessor_step_5_normalizer_processor.safetensors"
180
+ }
181
+ ]
182
+ }
policy_preprocessor_step_5_normalizer_processor.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec4b4c98fbf1075250422df2373a9effc18bf032ed68005c58b1b6ca05a52bd9
3
+ size 10304