Update config.json
Browse files- config.json +50 -0
config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_num_labels": 3,
|
| 3 |
+
"activation_dropout": 0.0,
|
| 4 |
+
"activation_function": "gelu",
|
| 5 |
+
"add_bias_logits": false,
|
| 6 |
+
"add_final_layer_norm": false,
|
| 7 |
+
"architectures": [
|
| 8 |
+
"BartForSequenceClassification"
|
| 9 |
+
],
|
| 10 |
+
"attention_dropout": 0.1,
|
| 11 |
+
"bos_token_id": 0,
|
| 12 |
+
"classif_dropout": 0.0,
|
| 13 |
+
"d_model": 1024,
|
| 14 |
+
"decoder_attention_heads": 16,
|
| 15 |
+
"decoder_ffn_dim": 4096,
|
| 16 |
+
"decoder_layerdrop": 0.0,
|
| 17 |
+
"decoder_layers": 3,
|
| 18 |
+
"dropout": 0.1,
|
| 19 |
+
"encoder_attention_heads": 16,
|
| 20 |
+
"encoder_ffn_dim": 4096,
|
| 21 |
+
"encoder_layerdrop": 0.0,
|
| 22 |
+
"encoder_layers": 12,
|
| 23 |
+
"eos_token_id": 2,
|
| 24 |
+
"extra_pos_embeddings": 2,
|
| 25 |
+
"finetuning_task": "mnli",
|
| 26 |
+
"force_bos_token_to_be_generated": false,
|
| 27 |
+
"id2label": {
|
| 28 |
+
"0": "contradiction",
|
| 29 |
+
"1": "neutral",
|
| 30 |
+
"2": "entailment"
|
| 31 |
+
},
|
| 32 |
+
"init_std": 0.02,
|
| 33 |
+
"is_encoder_decoder": true,
|
| 34 |
+
"label2id": {
|
| 35 |
+
"contradiction": 0,
|
| 36 |
+
"entailment": 2,
|
| 37 |
+
"neutral": 1
|
| 38 |
+
},
|
| 39 |
+
"max_position_embeddings": 1024,
|
| 40 |
+
"model_type": "bart",
|
| 41 |
+
"normalize_before": false,
|
| 42 |
+
"normalize_embedding": true,
|
| 43 |
+
"num_hidden_layers": 12,
|
| 44 |
+
"output_past": false,
|
| 45 |
+
"pad_token_id": 1,
|
| 46 |
+
"scale_embedding": false,
|
| 47 |
+
"static_position_embeddings": false,
|
| 48 |
+
"total_flos": 176191632140147712,
|
| 49 |
+
"vocab_size": 50265
|
| 50 |
+
}
|