Update config.json
Browse files- config.json +45 -0
config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"activation": "gelu",
|
| 3 |
+
"attention_dropout": 0.1,
|
| 4 |
+
"bos_token_id": 0,
|
| 5 |
+
"dim": 768,
|
| 6 |
+
"do_sample": false,
|
| 7 |
+
"dropout": 0.1,
|
| 8 |
+
"eos_token_ids": 0,
|
| 9 |
+
"finetuning_task": null,
|
| 10 |
+
"hidden_dim": 3072,
|
| 11 |
+
"id2label": {
|
| 12 |
+
"0": "LABEL_0",
|
| 13 |
+
"1": "LABEL_1"
|
| 14 |
+
},
|
| 15 |
+
"initializer_range": 0.02,
|
| 16 |
+
"is_decoder": false,
|
| 17 |
+
"label2id": {
|
| 18 |
+
"LABEL_0": 0,
|
| 19 |
+
"LABEL_1": 1
|
| 20 |
+
},
|
| 21 |
+
"length_penalty": 1.0,
|
| 22 |
+
"max_length": 20,
|
| 23 |
+
"max_position_embeddings": 512,
|
| 24 |
+
"n_heads": 12,
|
| 25 |
+
"n_layers": 6,
|
| 26 |
+
"num_beams": 1,
|
| 27 |
+
"num_labels": 2,
|
| 28 |
+
"num_return_sequences": 1,
|
| 29 |
+
"output_attentions": false,
|
| 30 |
+
"output_hidden_states": false,
|
| 31 |
+
"output_past": true,
|
| 32 |
+
"pad_token_id": 0,
|
| 33 |
+
"pruned_heads": {},
|
| 34 |
+
"qa_dropout": 0.1,
|
| 35 |
+
"repetition_penalty": 1.0,
|
| 36 |
+
"seq_classif_dropout": 0.2,
|
| 37 |
+
"sinusoidal_pos_embds": false,
|
| 38 |
+
"temperature": 1.0,
|
| 39 |
+
"tie_weights_": true,
|
| 40 |
+
"top_k": 50,
|
| 41 |
+
"top_p": 1.0,
|
| 42 |
+
"torchscript": false,
|
| 43 |
+
"use_bfloat16": false,
|
| 44 |
+
"vocab_size": 28996
|
| 45 |
+
}
|