AdilZtn commited on
Commit
f5ddc42
·
verified ·
1 Parent(s): 1d85058

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +82 -44
config.json CHANGED
@@ -1,47 +1,85 @@
1
  {
2
- "type": "pi0",
3
- "n_obs_steps": 1,
4
- "input_features": {},
5
- "output_features": {},
6
- "device": "cuda",
7
- "use_amp": false,
8
- "push_to_hub": true,
9
- "repo_id": null,
10
- "private": null,
11
- "tags": null,
12
- "license": null,
13
- "chunk_size": 50,
14
- "n_action_steps": 50,
15
- "normalization_mapping": {
16
- "VISUAL": "IDENTITY",
17
- "STATE": "MEAN_STD",
18
- "ACTION": "MEAN_STD"
19
  },
20
- "max_state_dim": 32,
21
- "max_action_dim": 32,
22
- "resize_imgs_with_padding": [
23
- 224,
24
- 224
25
- ],
26
- "empty_cameras": 0,
27
- "adapt_to_pi_aloha": false,
28
- "use_delta_joint_actions_aloha": false,
29
- "tokenizer_max_length": 48,
30
- "proj_width": 1024,
31
- "num_steps": 10,
32
- "use_cache": true,
33
- "attention_implementation": "eager",
34
- "freeze_vision_encoder": true,
35
- "train_expert_only": false,
36
- "train_state_proj": true,
37
- "optimizer_lr": 2.5e-05,
38
- "optimizer_betas": [
39
- 0.9,
40
- 0.95
41
- ],
42
- "optimizer_eps": 1e-08,
43
- "optimizer_weight_decay": 1e-10,
44
- "scheduler_warmup_steps": 1000,
45
- "scheduler_decay_steps": 30000,
46
- "scheduler_decay_lr": 2.5e-06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  }
 
1
  {
2
+ "type": "pi0",
3
+ "n_obs_steps": 1,
4
+ "input_features": {
5
+ "observation.state": {
6
+ "type": "STATE",
7
+ "shape": [
8
+ 6
9
+ ]
 
 
 
 
 
 
 
 
 
10
  },
11
+ "observation.images.camera1": {
12
+ "type": "VISUAL",
13
+ "shape": [
14
+ 3,
15
+ 256,
16
+ 256
17
+ ]
18
+ },
19
+ "observation.images.camera2": {
20
+ "type": "VISUAL",
21
+ "shape": [
22
+ 3,
23
+ 256,
24
+ 256
25
+ ]
26
+ },
27
+ "observation.images.camera3": {
28
+ "type": "VISUAL",
29
+ "shape": [
30
+ 3,
31
+ 256,
32
+ 256
33
+ ]
34
+ }
35
+ },
36
+ "output_features": {
37
+ "action": {
38
+ "type": "ACTION",
39
+ "shape": [
40
+ 6
41
+ ]
42
+ }
43
+ },
44
+ "device": "cuda",
45
+ "use_amp": false,
46
+ "push_to_hub": true,
47
+ "repo_id": null,
48
+ "private": null,
49
+ "tags": null,
50
+ "license": null,
51
+ "chunk_size": 50,
52
+ "n_action_steps": 50,
53
+ "normalization_mapping": {
54
+ "VISUAL": "IDENTITY",
55
+ "STATE": "MEAN_STD",
56
+ "ACTION": "MEAN_STD"
57
+ },
58
+ "max_state_dim": 32,
59
+ "max_action_dim": 32,
60
+ "resize_imgs_with_padding": [
61
+ 224,
62
+ 224
63
+ ],
64
+ "empty_cameras": 0,
65
+ "adapt_to_pi_aloha": false,
66
+ "use_delta_joint_actions_aloha": false,
67
+ "tokenizer_max_length": 48,
68
+ "proj_width": 1024,
69
+ "num_steps": 10,
70
+ "use_cache": true,
71
+ "attention_implementation": "eager",
72
+ "freeze_vision_encoder": true,
73
+ "train_expert_only": false,
74
+ "train_state_proj": true,
75
+ "optimizer_lr": 0.000025,
76
+ "optimizer_betas": [
77
+ 0.9,
78
+ 0.95
79
+ ],
80
+ "optimizer_eps": 1e-8,
81
+ "optimizer_weight_decay": 1e-10,
82
+ "scheduler_warmup_steps": 1000,
83
+ "scheduler_decay_steps": 30000,
84
+ "scheduler_decay_lr": 0.0000025
85
  }