Update config.json
Browse files- config.json +46 -0
config.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"BertForSequenceClassification"
|
4 |
+
],
|
5 |
+
"attention_probs_dropout_prob": 0.1,
|
6 |
+
"directionality": "bidi",
|
7 |
+
"finetuning_task": "sentiment-analysis",
|
8 |
+
"hidden_act": "gelu",
|
9 |
+
"hidden_dropout_prob": 0.1,
|
10 |
+
"hidden_size": 768,
|
11 |
+
"id2label": {
|
12 |
+
"0": "1",
|
13 |
+
"1": "2",
|
14 |
+
"2": "3",
|
15 |
+
"3": "4",
|
16 |
+
"4": "5"
|
17 |
+
},
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 3072,
|
20 |
+
"is_decoder": false,
|
21 |
+
"label2id": {
|
22 |
+
"1": 0,
|
23 |
+
"2": 1,
|
24 |
+
"3": 2,
|
25 |
+
"4": 3,
|
26 |
+
"5": 4
|
27 |
+
},
|
28 |
+
"layer_norm_eps": 1e-12,
|
29 |
+
"max_position_embeddings": 512,
|
30 |
+
"num_attention_heads": 12,
|
31 |
+
"num_hidden_layers": 12,
|
32 |
+
"num_labels": 5,
|
33 |
+
"output_attentions": false,
|
34 |
+
"output_hidden_states": false,
|
35 |
+
"output_past": true,
|
36 |
+
"pooler_fc_size": 768,
|
37 |
+
"pooler_num_attention_heads": 12,
|
38 |
+
"pooler_num_fc_layers": 3,
|
39 |
+
"pooler_size_per_head": 128,
|
40 |
+
"pooler_type": "first_token_transform",
|
41 |
+
"pruned_heads": {},
|
42 |
+
"torchscript": false,
|
43 |
+
"type_vocab_size": 2,
|
44 |
+
"use_bfloat16": false,
|
45 |
+
"vocab_size": 105879
|
46 |
+
}
|