Update config.json
Browse files- config.json +67 -84
config.json
CHANGED
@@ -1,88 +1,71 @@
|
|
1 |
{
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
},
|
9 |
-
"
|
10 |
-
|
11 |
-
|
12 |
-
"shape": [
|
13 |
-
6
|
14 |
-
]
|
15 |
-
},
|
16 |
-
"observation.images.top": {
|
17 |
-
"type": "VISUAL",
|
18 |
-
"shape": [
|
19 |
-
3,
|
20 |
-
480,
|
21 |
-
640
|
22 |
-
]
|
23 |
-
},
|
24 |
-
"observation.images.wrist": {
|
25 |
-
"type": "VISUAL",
|
26 |
-
"shape": [
|
27 |
-
3,
|
28 |
-
480,
|
29 |
-
640
|
30 |
-
]
|
31 |
-
}
|
32 |
},
|
33 |
-
"
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
"expert_width_multiplier": 0.75,
|
86 |
-
"min_period": 0.004,
|
87 |
-
"max_period": 4.0
|
88 |
}
|
|
|
1 |
{
|
2 |
+
"model_type": "smolvla",
|
3 |
+
"type": "smolvla",
|
4 |
+
"n_obs_steps": 1,
|
5 |
+
"normalization_mapping": {
|
6 |
+
"VISUAL": "IDENTITY",
|
7 |
+
"STATE": "MEAN_STD",
|
8 |
+
"ACTION": "MEAN_STD"
|
9 |
+
},
|
10 |
+
"input_features": {
|
11 |
+
"observation.state": {
|
12 |
+
"type": "STATE",
|
13 |
+
"shape": [6]
|
14 |
},
|
15 |
+
"observation.images.top": {
|
16 |
+
"type": "VISUAL",
|
17 |
+
"shape": [3, 480, 640]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
},
|
19 |
+
"observation.images.wrist": {
|
20 |
+
"type": "VISUAL",
|
21 |
+
"shape": [3, 480, 640]
|
22 |
+
}
|
23 |
+
},
|
24 |
+
"output_features": {
|
25 |
+
"action": {
|
26 |
+
"type": "ACTION",
|
27 |
+
"shape": [6]
|
28 |
+
}
|
29 |
+
},
|
30 |
+
"device": "cuda",
|
31 |
+
"use_amp": false,
|
32 |
+
"push_to_hub": true,
|
33 |
+
"repo_id": "incyvinvy/smolvla_colabtrained_wandb",
|
34 |
+
"private": null,
|
35 |
+
"tags": null,
|
36 |
+
"license": null,
|
37 |
+
"chunk_size": 50,
|
38 |
+
"n_action_steps": 50,
|
39 |
+
"max_state_dim": 32,
|
40 |
+
"max_action_dim": 32,
|
41 |
+
"resize_imgs_with_padding": [512, 512],
|
42 |
+
"empty_cameras": 0,
|
43 |
+
"adapt_to_pi_aloha": false,
|
44 |
+
"use_delta_joint_actions_aloha": false,
|
45 |
+
"tokenizer_max_length": 48,
|
46 |
+
"num_steps": 10,
|
47 |
+
"use_cache": true,
|
48 |
+
"freeze_vision_encoder": true,
|
49 |
+
"train_expert_only": true,
|
50 |
+
"train_state_proj": true,
|
51 |
+
"optimizer_lr": 0.0001,
|
52 |
+
"optimizer_betas": [0.9, 0.95],
|
53 |
+
"optimizer_eps": 1e-08,
|
54 |
+
"optimizer_weight_decay": 1e-10,
|
55 |
+
"optimizer_grad_clip_norm": 10.0,
|
56 |
+
"scheduler_warmup_steps": 1000,
|
57 |
+
"scheduler_decay_steps": 30000,
|
58 |
+
"scheduler_decay_lr": 2.5e-06,
|
59 |
+
"vlm_model_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct",
|
60 |
+
"load_vlm_weights": true,
|
61 |
+
"add_image_special_tokens": false,
|
62 |
+
"attention_mode": "cross_attn",
|
63 |
+
"prefix_length": 0,
|
64 |
+
"pad_language_to": "max_length",
|
65 |
+
"num_expert_layers": 0,
|
66 |
+
"num_vlm_layers": 16,
|
67 |
+
"self_attn_every_n_layers": 2,
|
68 |
+
"expert_width_multiplier": 0.75,
|
69 |
+
"min_period": 0.004,
|
70 |
+
"max_period": 4.0
|
|
|
|
|
|
|
71 |
}
|