Create config.json
Browse files- config.json +20 -0
config.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "clip",
|
3 |
+
"img_encoder":{
|
4 |
+
"backbone": "deit3_base_patch16_224_in21ft1k",
|
5 |
+
"dim": 768,
|
6 |
+
"pooling": "cls",
|
7 |
+
"output_dim": 256,
|
8 |
+
"backbone_type": "vit"
|
9 |
+
},
|
10 |
+
"text_encoder":{
|
11 |
+
"backbone": "sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2",
|
12 |
+
"backbone_type": "bert",
|
13 |
+
"unimodal_n_layers": 8,
|
14 |
+
"dim": 384,
|
15 |
+
"pooling": "mean",
|
16 |
+
"context_dim": 768,
|
17 |
+
"output_dim": 256,
|
18 |
+
"head_one_neuron": true
|
19 |
+
}
|
20 |
+
}
|