Update config.json
Browse files- config.json +13 -14
config.json
CHANGED
@@ -1,36 +1,35 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "jinaai/jina-bert-
|
|
|
3 |
"architectures": [
|
4 |
"JinaBertForMaskedLM"
|
5 |
],
|
6 |
"attention_probs_dropout_prob": 0.0,
|
7 |
-
"attn_implementation": "torch",
|
8 |
"auto_map": {
|
9 |
-
"AutoConfig": "jinaai/jina-bert-
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"AutoModelForSequenceClassification": "jinaai/jina-bert-
|
13 |
},
|
14 |
"classifier_dropout": null,
|
15 |
-
"emb_pooler": "mean",
|
16 |
-
"feed_forward_type": "geglu",
|
17 |
"gradient_checkpointing": false,
|
18 |
"hidden_act": "gelu",
|
19 |
-
"hidden_dropout_prob": 0.
|
20 |
"hidden_size": 768,
|
21 |
"initializer_range": 0.02,
|
22 |
"intermediate_size": 3072,
|
23 |
"layer_norm_eps": 1e-12,
|
24 |
"max_position_embeddings": 8192,
|
25 |
-
"model_max_length": 8192,
|
26 |
"model_type": "bert",
|
27 |
"num_attention_heads": 12,
|
28 |
"num_hidden_layers": 12,
|
29 |
"pad_token_id": 0,
|
30 |
"position_embedding_type": "alibi",
|
31 |
-
"torch_dtype": "
|
32 |
-
"transformers_version": "4.
|
33 |
"type_vocab_size": 2,
|
34 |
"use_cache": true,
|
35 |
-
"vocab_size":
|
36 |
-
|
|
|
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "jinaai/jina-bert-implementation",
|
3 |
+
"model_max_length": 8192,
|
4 |
"architectures": [
|
5 |
"JinaBertForMaskedLM"
|
6 |
],
|
7 |
"attention_probs_dropout_prob": 0.0,
|
|
|
8 |
"auto_map": {
|
9 |
+
"AutoConfig": "jinaai/jina-bert-implementation--configuration_bert.JinaBertConfig",
|
10 |
+
"AutoModelForMaskedLM": "jinaai/jina-bert-implementation--modeling_bert.JinaBertForMaskedLM",
|
11 |
+
"AutoModel": "jinaai/jina-bert-implementation--modeling_bert.JinaBertModel",
|
12 |
+
"AutoModelForSequenceClassification": "jinaai/jina-bert-implementation--modeling_bert.JinaBertForSequenceClassification"
|
13 |
},
|
14 |
"classifier_dropout": null,
|
|
|
|
|
15 |
"gradient_checkpointing": false,
|
16 |
"hidden_act": "gelu",
|
17 |
+
"hidden_dropout_prob": 0.1,
|
18 |
"hidden_size": 768,
|
19 |
"initializer_range": 0.02,
|
20 |
"intermediate_size": 3072,
|
21 |
"layer_norm_eps": 1e-12,
|
22 |
"max_position_embeddings": 8192,
|
|
|
23 |
"model_type": "bert",
|
24 |
"num_attention_heads": 12,
|
25 |
"num_hidden_layers": 12,
|
26 |
"pad_token_id": 0,
|
27 |
"position_embedding_type": "alibi",
|
28 |
+
"torch_dtype": "float32",
|
29 |
+
"transformers_version": "4.26.0",
|
30 |
"type_vocab_size": 2,
|
31 |
"use_cache": true,
|
32 |
+
"vocab_size": 30528,
|
33 |
+
"feed_forward_type": "geglu",
|
34 |
+
"emb_pooler": "mean"
|
35 |
+
}
|