pepijn223 HF Staff commited on
Commit
efbe97b
·
verified ·
1 Parent(s): d747ca9

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +91 -5
config.json CHANGED
@@ -1,7 +1,93 @@
1
  {
2
- "action_dim": 32,
3
- "action_horizon": 50,
4
- "paligemma_variant": "gemma_2b",
5
- "action_expert_variant": "gemma_300m",
6
- "precision": "float32"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
 
1
  {
2
+ "type": "pi0_openpi",
3
+ "n_obs_steps": 1,
4
+ "normalization_mapping": {
5
+ "VISUAL": "IDENTITY",
6
+ "STATE": "MEAN_STD",
7
+ "ACTION": "MEAN_STD"
8
+ },
9
+ "input_features": {
10
+ "observation.images.base_0_rgb": {
11
+ "type": "VISUAL",
12
+ "shape": [
13
+ 3,
14
+ 224,
15
+ 224
16
+ ]
17
+ },
18
+ "observation.images.left_wrist_0_rgb": {
19
+ "type": "VISUAL",
20
+ "shape": [
21
+ 3,
22
+ 224,
23
+ 224
24
+ ]
25
+ },
26
+ "observation.images.right_wrist_0_rgb": {
27
+ "type": "VISUAL",
28
+ "shape": [
29
+ 3,
30
+ 224,
31
+ 224
32
+ ]
33
+ },
34
+ "observation.state": {
35
+ "type": "STATE",
36
+ "shape": [
37
+ 32
38
+ ]
39
+ }
40
+ },
41
+ "output_features": {
42
+ "action": {
43
+ "type": "ACTION",
44
+ "shape": [
45
+ 32
46
+ ]
47
+ }
48
+ },
49
+ "device": "mps",
50
+ "use_amp": false,
51
+ "push_to_hub": true,
52
+ "repo_id": null,
53
+ "private": null,
54
+ "tags": null,
55
+ "license": null,
56
+ "paligemma_variant": "gemma_2b",
57
+ "action_expert_variant": "gemma_300m",
58
+ "pi05": false,
59
+ "dtype": "float32",
60
+ "action_horizon": 50,
61
+ "n_action_steps": 50,
62
+ "action_dim": 32,
63
+ "state_dim": 32,
64
+ "num_inference_steps": 10,
65
+ "time_sampling_beta_alpha": 1.5,
66
+ "time_sampling_beta_beta": 1.0,
67
+ "min_period": 0.004,
68
+ "max_period": 4.0,
69
+ "image_resolution": [
70
+ 224,
71
+ 224
72
+ ],
73
+ "image_keys": [
74
+ "observation.images.base_0_rgb",
75
+ "observation.images.left_wrist_0_rgb",
76
+ "observation.images.right_wrist_0_rgb"
77
+ ],
78
+ "gradient_checkpointing": false,
79
+ "compile_model": false,
80
+ "compile_mode": "max-autotune",
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": 0.01,
88
+ "optimizer_grad_clip_norm": 1.0,
89
+ "scheduler_warmup_steps": 1000,
90
+ "scheduler_decay_steps": 30000,
91
+ "scheduler_decay_lr": 2.5e-06,
92
+ "tokenizer_max_length": 200
93
  }