Feature Extraction
clip
vision
File size: 632 Bytes
06c2b25
 
 
 
 
 
 
 
 
 
 
bd4c271
06c2b25
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
    "text_encoder": {
        "model_type": "bert",
        "dim": 384,
        "context_dim": 768,
        "vocab_size": 250037,
        "padding_idx": 1,
        "num_layers": 12,
        "num_heads": 12,
        "embedding_dim": 256,
        "multimodal_layers_ids": [8, 9, 10, 11],
        "head_one_neuron": false,
        "pooling": "mean",
        "max_position_embeddings": 50,
        "dropout_prob": 0.1
    },
    "image_encoder": {
        "dim": 768,
        "patch_size": 16,
        "image_size": 224,
        "num_layers": 12,
        "num_heads": 12,
        "embedding_dim": 256,
        "pooling": "cls"
    }
}