Upload config.json with huggingface_hub
Browse files- config.json +63 -62
config.json
CHANGED
@@ -1,64 +1,65 @@
|
|
1 |
{
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
"backbone_embedding_dim": 2048,
|
8 |
-
"diffusion_model_cfg": {
|
9 |
-
"attention_head_dim": 48,
|
10 |
-
"cross_attention_dim": 2048,
|
11 |
-
"dropout": 0.2,
|
12 |
-
"final_dropout": true,
|
13 |
-
"interleave_self_attention": true,
|
14 |
-
"norm_type": "ada_norm",
|
15 |
-
"num_attention_heads": 32,
|
16 |
-
"num_layers": 16,
|
17 |
-
"output_dim": 1024,
|
18 |
-
"positional_embeddings": null
|
19 |
},
|
20 |
-
"
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
{
|
2 |
+
"n_obs_steps": 1,
|
3 |
+
"normalization_mapping": {
|
4 |
+
"VISUAL": "MEAN_STD",
|
5 |
+
"STATE": "MIN_MAX",
|
6 |
+
"ACTION": "MIN_MAX"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
},
|
8 |
+
"input_features": {
|
9 |
+
"observation.images.egoview": {
|
10 |
+
"type": "VISUAL",
|
11 |
+
"shape": [
|
12 |
+
3,
|
13 |
+
800,
|
14 |
+
1280
|
15 |
+
]
|
16 |
+
},
|
17 |
+
"observation.images.ego_view": {
|
18 |
+
"type": "VISUAL",
|
19 |
+
"shape": [
|
20 |
+
3,
|
21 |
+
256,
|
22 |
+
256
|
23 |
+
]
|
24 |
+
},
|
25 |
+
"observation.state": {
|
26 |
+
"type": "STATE",
|
27 |
+
"shape": [
|
28 |
+
44
|
29 |
+
]
|
30 |
+
}
|
31 |
+
},
|
32 |
+
"output_features": {
|
33 |
+
"action": {
|
34 |
+
"type": "ACTION",
|
35 |
+
"shape": [
|
36 |
+
44
|
37 |
+
]
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"device": "cuda",
|
41 |
+
"use_amp": true,
|
42 |
+
"chunk_size": 16,
|
43 |
+
"n_action_steps": 8,
|
44 |
+
"vision_model_id": "/scratch/cbjp404/.cache/hf/models/siglip-so400m-patch14-384",
|
45 |
+
"text_model_id": "/scratch/cbjp404/.cache/hf/models/gemma-3-4b-it",
|
46 |
+
"use_2d_rope": false,
|
47 |
+
"lora_rank": 16,
|
48 |
+
"lora_alpha": 16,
|
49 |
+
"lora_dropout": 0.1,
|
50 |
+
"lora_target_modules": [
|
51 |
+
"q_proj",
|
52 |
+
"k_proj",
|
53 |
+
"v_proj",
|
54 |
+
"o_proj"
|
55 |
+
],
|
56 |
+
"scaledp_num_layers": 4,
|
57 |
+
"scaledp_num_heads": 8,
|
58 |
+
"scaledp_dim_model": 512,
|
59 |
+
"scaledp_dim_feedforward": 2048,
|
60 |
+
"num_diffusion_steps": 100,
|
61 |
+
"conditioning_dim": 768,
|
62 |
+
"plan_update_interval": 10,
|
63 |
+
"optimizer_lr": 0.0001,
|
64 |
+
"optimizer_weight_decay": 1e-06
|
65 |
+
}
|