risingodegua commited on
Commit
643dcf0
1 Parent(s): e010699

Add config.json

Browse files
Files changed (1) hide show
  1. config.json +53 -0
config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_num_labels": 3,
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": null,
8
+ "do_sample": false,
9
+ "early_stopping": false,
10
+ "eos_token_id": null,
11
+ "finetuning_task": null,
12
+ "hidden_act": "gelu",
13
+ "hidden_dropout_prob": 0.1,
14
+ "hidden_size": 768,
15
+ "id2label": {
16
+ "0": "Normal",
17
+ "1": "Offensive",
18
+ "2": "Hatespeech"
19
+ },
20
+ "initializer_range": 0.02,
21
+ "intermediate_size": 3072,
22
+ "is_decoder": false,
23
+ "is_encoder_decoder": false,
24
+ "label2id": {
25
+ "Hatespeech": "2",
26
+ "Normal": "0",
27
+ "Offensive": "1"
28
+ },
29
+ "layer_norm_eps": 1e-12,
30
+ "length_penalty": 1.0,
31
+ "max_length": 20,
32
+ "max_position_embeddings": 512,
33
+ "min_length": 0,
34
+ "model_type": "bert",
35
+ "no_repeat_ngram_size": 0,
36
+ "num_attention_heads": 12,
37
+ "num_beams": 1,
38
+ "num_hidden_layers": 12,
39
+ "num_return_sequences": 1,
40
+ "output_attentions": false,
41
+ "output_hidden_states": false,
42
+ "output_past": true,
43
+ "pad_token_id": 0,
44
+ "pruned_heads": {},
45
+ "repetition_penalty": 1.0,
46
+ "temperature": 1.0,
47
+ "top_k": 50,
48
+ "top_p": 1.0,
49
+ "torchscript": false,
50
+ "type_vocab_size": 2,
51
+ "use_bfloat16": false,
52
+ "vocab_size": 30522
53
+ }