ML-GOD commited on
Commit
5dc4d24
·
1 Parent(s): f3dfa96

Addimg policy config

Browse files
Files changed (1) hide show
  1. config.json +91 -0
config.json ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "pi05",
3
+ "n_obs_steps": 1,
4
+ "normalization_mapping": {
5
+ "VISUAL": "IDENTITY",
6
+ "STATE": "MIN_MAX",
7
+ "ACTION": "MEAN_STD"
8
+ },
9
+ "input_features": {
10
+ "state": {
11
+ "type": "STATE",
12
+ "shape": [
13
+ 32
14
+ ]
15
+ },
16
+ "camera0": {
17
+ "type": "VISUAL",
18
+ "shape": [
19
+ 3,
20
+ 256,
21
+ 256
22
+ ]
23
+ },
24
+ "camera1": {
25
+ "type": "VISUAL",
26
+ "shape": [
27
+ 3,
28
+ 256,
29
+ 256
30
+ ]
31
+ },
32
+ "camera2": {
33
+ "type": "VISUAL",
34
+ "shape": [
35
+ 3,
36
+ 256,
37
+ 256
38
+ ]
39
+ }
40
+ },
41
+ "output_features": {
42
+ "actions": {
43
+ "type": "ACTION",
44
+ "shape": [
45
+ 32
46
+ ]
47
+ }
48
+ },
49
+ "device": null,
50
+ "use_amp": false,
51
+ "pretrained_path": "outputs/train/2026-03-21/04-00-37_pi05/checkpoints/0031000",
52
+ "cloud_vlm_latency_mean": 0.0,
53
+ "cloud_vlm_latency_std": 0.0,
54
+ "cloud_vlm_latency_lower": 0.0,
55
+ "cloud_vlm_latency_upper": 0.0,
56
+ "action_decoder_latency_mean": 0.0,
57
+ "action_decoder_latency_std": 0.0,
58
+ "action_decoder_latency_lower": 0.0,
59
+ "action_decoder_latency_upper": 0.0,
60
+ "chunk_size": 20,
61
+ "n_action_steps": 20,
62
+ "max_state_dim": 32,
63
+ "max_action_dim": 32,
64
+ "predict_response": false,
65
+ "resize_imgs_with_padding": [
66
+ 224,
67
+ 224
68
+ ],
69
+ "empty_cameras": 0,
70
+ "prompt_max_length": 256,
71
+ "response_max_length": 52,
72
+ "discrete_action_max_length": 75,
73
+ "proj_width": 1024,
74
+ "dropout": 0.1,
75
+ "num_steps": 10,
76
+ "max_delay": 0,
77
+ "init_strategy": "no_init",
78
+ "attention_implementation": "eager",
79
+ "freeze_vision_encoder": false,
80
+ "train_expert_only": false,
81
+ "optimizer_lr": 2.5e-05,
82
+ "optimizer_betas": [
83
+ 0.9,
84
+ 0.95
85
+ ],
86
+ "optimizer_eps": 1e-08,
87
+ "optimizer_weight_decay": 1e-10,
88
+ "scheduler_warmup_steps": 1000,
89
+ "scheduler_decay_steps": 30000,
90
+ "scheduler_decay_lr": 2.5e-06
91
+ }