Robotics
LeRobot
Safetensors
act
Omartificial-Intelligence-Space commited on
Commit
bd1c1d9
·
verified ·
1 Parent(s): f339bac

Upload policy_preprocessor.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. policy_preprocessor.json +67 -0
policy_preprocessor.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "policy_preprocessor",
3
+ "steps": [
4
+ {
5
+ "registry_name": "rename_observations_processor",
6
+ "config": {
7
+ "rename_map": {
8
+ "observation.images.head": "observation.images.camera1",
9
+ "observation.images.side": "observation.images.camera2"
10
+ }
11
+ }
12
+ },
13
+ {
14
+ "registry_name": "to_batch_processor",
15
+ "config": {}
16
+ },
17
+ {
18
+ "registry_name": "device_processor",
19
+ "config": {
20
+ "device": "cuda",
21
+ "float_dtype": null
22
+ }
23
+ },
24
+ {
25
+ "registry_name": "normalizer_processor",
26
+ "config": {
27
+ "eps": 1e-08,
28
+ "features": {
29
+ "observation.state": {
30
+ "type": "STATE",
31
+ "shape": [
32
+ 14
33
+ ]
34
+ },
35
+ "observation.images.camera1": {
36
+ "type": "VISUAL",
37
+ "shape": [
38
+ 3,
39
+ 480,
40
+ 640
41
+ ]
42
+ },
43
+ "observation.images.camera2": {
44
+ "type": "VISUAL",
45
+ "shape": [
46
+ 3,
47
+ 480,
48
+ 640
49
+ ]
50
+ },
51
+ "action": {
52
+ "type": "ACTION",
53
+ "shape": [
54
+ 14
55
+ ]
56
+ }
57
+ },
58
+ "norm_map": {
59
+ "VISUAL": "MEAN_STD",
60
+ "STATE": "MEAN_STD",
61
+ "ACTION": "MEAN_STD"
62
+ }
63
+ },
64
+ "state_file": "policy_preprocessor_step_3_normalizer_processor.safetensors"
65
+ }
66
+ ]
67
+ }