Create config.json
Browse files- config.json +35 -0
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"adapter_id": "003",
|
3 |
+
"name": "DualShuntAdapter-G",
|
4 |
+
|
5 |
+
"t5": {
|
6 |
+
"model": "google/flan-t5-base",
|
7 |
+
"hidden_size": 768,
|
8 |
+
},
|
9 |
+
"clip": {
|
10 |
+
"model": "laion/CLIP-ViT-bigG-14-laion2B-39B-b160k",
|
11 |
+
"hidden_size": 1280,
|
12 |
+
},
|
13 |
+
|
14 |
+
"bottleneck": 640,
|
15 |
+
"heads": 20,
|
16 |
+
|
17 |
+
"tau_init": 0.1,
|
18 |
+
"max_guidance": 10.0,
|
19 |
+
|
20 |
+
"proj_layers": 2,
|
21 |
+
"layer_norm": true,
|
22 |
+
"dropout": 0.1,
|
23 |
+
"use_dropout": true,
|
24 |
+
"use_proj_stack": true,
|
25 |
+
"assert_input_dims": true,
|
26 |
+
|
27 |
+
"routing": {
|
28 |
+
"type": "cross_attention",
|
29 |
+
"enable_causal_mask": false,
|
30 |
+
"bidirectional": true
|
31 |
+
},
|
32 |
+
|
33 |
+
"version": "v0.3.2",
|
34 |
+
"description": "Final Dual Shunt Adapter with projection stack, dropout, and stacked residual refinement pocket."
|
35 |
+
}
|