SriramAditya
commited on
Commit
•
5557f23
1
Parent(s):
de547b0
Create config.json
Browse files- config.json +68 -0
config.json
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-base-uncased",
|
3 |
+
"architectures": [
|
4 |
+
"BertForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"gradient_checkpointing": false,
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.1,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"id2label": {
|
13 |
+
"0": "Exaggeration,Minimisation",
|
14 |
+
"1": "Whataboutism",
|
15 |
+
"2": "Empty",
|
16 |
+
"3": "Appeal_to_fear-prejudice",
|
17 |
+
"4": "Straw_Men",
|
18 |
+
"5": "Appeal_to_Authority",
|
19 |
+
"6": "Bandwagon",
|
20 |
+
"7": "Doubt",
|
21 |
+
"8": "Name_Calling,Labeling",
|
22 |
+
"9": "Obfuscation,Intentional_Vagueness,Confusion",
|
23 |
+
"10": "Thought-terminating_Cliches",
|
24 |
+
"11": "Loaded_Language",
|
25 |
+
"12": "Slogans",
|
26 |
+
"13": "Black-and-White_Fallacy",
|
27 |
+
"14": "Red_Herring",
|
28 |
+
"15": "Flag-Waving",
|
29 |
+
"16": "Repetition",
|
30 |
+
"17": "Causal_Oversimplification",
|
31 |
+
"18": "Reductio_ad_hitlerum"
|
32 |
+
},
|
33 |
+
"initializer_range": 0.02,
|
34 |
+
"intermediate_size": 3072,
|
35 |
+
"label2id": {
|
36 |
+
"Exaggeration,Minimisation": 0,
|
37 |
+
"Whataboutism": 1,
|
38 |
+
"Thought-terminating_Cliches": 10,
|
39 |
+
"Loaded_Language": 11,
|
40 |
+
"Slogans": 12,
|
41 |
+
"Black-and-White_Fallac": 13,
|
42 |
+
"Red_Herring": 14,
|
43 |
+
"Flag-Waving": 15,
|
44 |
+
"Repetition": 16,
|
45 |
+
"Causal_Oversimplification": 17,
|
46 |
+
"Reductio_ad_hitlerum": 18,
|
47 |
+
"Empty": 2,
|
48 |
+
"Appeal_to_fear-prejudice": 3,
|
49 |
+
"Straw_Men": 4,
|
50 |
+
"Appeal_to_Authority": 5,
|
51 |
+
"Bandwagon": 6,
|
52 |
+
"Doubt": 7,
|
53 |
+
"Name_Calling,Labeling": 8,
|
54 |
+
"Obfuscation,Intentional_Vagueness,Confusion": 9
|
55 |
+
},
|
56 |
+
"layer_norm_eps": 1e-12,
|
57 |
+
"max_position_embeddings": 512,
|
58 |
+
"model_type": "bert",
|
59 |
+
"num_attention_heads": 12,
|
60 |
+
"num_hidden_layers": 12,
|
61 |
+
"pad_token_id": 0,
|
62 |
+
"position_embedding_type": "absolute",
|
63 |
+
"torch_dtype": "float32",
|
64 |
+
"transformers_version": "4.27.2",
|
65 |
+
"type_vocab_size": 2,
|
66 |
+
"use_cache": true,
|
67 |
+
"vocab_size": 30522
|
68 |
+
}
|