Create config.json
Browse files- config.json +27 -0
config.json
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"LtgbertFoCausalLM"
|
4 |
+
],
|
5 |
+
"auto_map": {
|
6 |
+
"AutoConfig": "configuration_ltgbert.LtgbertConfig",
|
7 |
+
"AutoModel": "modeling_ltgbert.LtgbertModel",
|
8 |
+
"AutoModelForCausalLM": "modeling_ltgbert.LtgbertForCausalLM",
|
9 |
+
"AutoModelForMaskedLM": "modeling_ltgbert.LtgbertForMaskedLM",
|
10 |
+
"AutoModelForSequenceClassification": "modeling_ltgbert.LtgbertForSequenceClassification",
|
11 |
+
"AutoModelForTokenClassification": "modeling_ltgbert.LtgbertForTokenClassification",
|
12 |
+
"AutoModelForQuestionAnswering": "modeling_ltgbert.LtgbertForQuestionAnswering",
|
13 |
+
"AutoModelForMultipleChoice": "modeling_ltgbert.LtgbertForMultipleChoice"
|
14 |
+
},
|
15 |
+
"attention_probs_dropout_prob": 0.1,
|
16 |
+
"hidden_dropout_prob": 0.1,
|
17 |
+
"hidden_size": 384,
|
18 |
+
"intermediate_size": 1280,
|
19 |
+
"layer_norm_eps": 1e-07,
|
20 |
+
"max_position_embeddings": 512,
|
21 |
+
"num_attention_heads": 6,
|
22 |
+
"num_hidden_layers": 12,
|
23 |
+
"position_bucket_size": 32,
|
24 |
+
"torch_dtype": "float32",
|
25 |
+
"vocab_size": 8192,
|
26 |
+
"temperature": 2.65
|
27 |
+
}
|