pepijn223 HF Staff commited on
Commit
51ef4b4
·
verified ·
1 Parent(s): 3e438d4

Upload robot_preprocessor.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. robot_preprocessor.json +86 -0
robot_preprocessor.json ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "robot_preprocessor",
3
+ "seed": null,
4
+ "steps": [
5
+ {
6
+ "registry_name": "rename_processor",
7
+ "config": {
8
+ "rename_map": {}
9
+ }
10
+ },
11
+ {
12
+ "registry_name": "normalizer_processor",
13
+ "config": {
14
+ "eps": 1e-08,
15
+ "features": {
16
+ "observation.state": {
17
+ "type": "STATE",
18
+ "shape": [
19
+ 6
20
+ ]
21
+ },
22
+ "observation.images.camera0": {
23
+ "type": "VISUAL",
24
+ "shape": [
25
+ 3,
26
+ 480,
27
+ 640
28
+ ]
29
+ },
30
+ "observation.images.camera1": {
31
+ "type": "VISUAL",
32
+ "shape": [
33
+ 3,
34
+ 480,
35
+ 640
36
+ ]
37
+ },
38
+ "observation.images.camera2": {
39
+ "type": "VISUAL",
40
+ "shape": [
41
+ 3,
42
+ 480,
43
+ 640
44
+ ]
45
+ },
46
+ "action": {
47
+ "type": "ACTION",
48
+ "shape": [
49
+ 6
50
+ ]
51
+ }
52
+ },
53
+ "norm_map": {
54
+ "VISUAL": "IDENTITY",
55
+ "STATE": "MEAN_STD",
56
+ "ACTION": "MEAN_STD"
57
+ }
58
+ }
59
+ },
60
+ {
61
+ "registry_name": "to_batch_processor",
62
+ "config": {}
63
+ },
64
+ {
65
+ "registry_name": "smolvla_new_line_processor",
66
+ "config": {}
67
+ },
68
+ {
69
+ "registry_name": "tokenizer_processor",
70
+ "config": {
71
+ "max_length": 48,
72
+ "task_key": "task",
73
+ "padding_side": "right",
74
+ "padding": "max_length",
75
+ "truncation": true,
76
+ "tokenizer_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct"
77
+ }
78
+ },
79
+ {
80
+ "registry_name": "device_processor",
81
+ "config": {
82
+ "device": "mps"
83
+ }
84
+ }
85
+ ]
86
+ }