Update config.json
Browse files- config.json +10 -0
config.json
CHANGED
@@ -3,6 +3,16 @@
|
|
3 |
"architectures": [
|
4 |
"BertForMaskedLM"
|
5 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"attention_probs_dropout_prob": 0.1,
|
7 |
"classifier_dropout": null,
|
8 |
"gradient_checkpointing": false,
|
|
|
3 |
"architectures": [
|
4 |
"BertForMaskedLM"
|
5 |
],
|
6 |
+
"auto_map": {
|
7 |
+
"AutoModel": "shared_model.BertModel",
|
8 |
+
"AutoModelForMaskedLM": "shared_model.BertForMaskedLM",
|
9 |
+
"AutoModelForQuestionAnswering": "shared_model.BertForQuestionAnswering",
|
10 |
+
"AutoModelForSequenceClassification": "shared_model.BertForSequenceClassification",
|
11 |
+
"AutoModelForTokenClassification": "shared_model.BertForTokenClassification",
|
12 |
+
"AutoModelForMultipleChoice": "shared_model.BertForMultipleChoice",
|
13 |
+
"AutoModelForNextSentencePrediction": "shared_model.BertForNextSentencePrediction",
|
14 |
+
"AutoModelForPreTraining": "shared_model.BertForForPreTraining"
|
15 |
+
},
|
16 |
"attention_probs_dropout_prob": 0.1,
|
17 |
"classifier_dropout": null,
|
18 |
"gradient_checkpointing": false,
|