Daniel Ferreira commited on
Commit
d60567a
1 Parent(s): a89c819

add config.json

Browse files
Files changed (1) hide show
  1. config.json +64 -0
config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "./config.json",
3
+ "architectures": [
4
+ "XLMRobertaForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "toxicity",
15
+ "1": "severe_toxicity",
16
+ "2": "obscene",
17
+ "3": "identity_attack",
18
+ "4": "insult",
19
+ "5": "threat",
20
+ "6": "sexual_explicit",
21
+ "7": "male",
22
+ "8": "female",
23
+ "9": "homosexual_gay_or_lesbian",
24
+ "10": "christian",
25
+ "11": "jewish",
26
+ "12": "muslim",
27
+ "13": "black",
28
+ "14": "white",
29
+ "15": "psychiatric_or_mental_illness"
30
+ },
31
+ "initializer_range": 0.02,
32
+ "intermediate_size": 3072,
33
+ "label2id": {
34
+ "black": 13,
35
+ "christian": 10,
36
+ "female": 8,
37
+ "homosexual_gay_or_lesbian": 9,
38
+ "identity_attack": 3,
39
+ "insult": 4,
40
+ "jewish": 11,
41
+ "male": 7,
42
+ "muslim": 12,
43
+ "obscene": 2,
44
+ "psychiatric_or_mental_illness": 15,
45
+ "severe_toxicity": 1,
46
+ "sexual_explicit": 6,
47
+ "threat": 5,
48
+ "toxicity": 0,
49
+ "white": 14
50
+ },
51
+ "layer_norm_eps": 1e-05,
52
+ "max_position_embeddings": 514,
53
+ "model_type": "xlm-roberta",
54
+ "num_attention_heads": 12,
55
+ "num_hidden_layers": 12,
56
+ "output_past": true,
57
+ "pad_token_id": 1,
58
+ "position_embedding_type": "absolute",
59
+ "torch_dtype": "float32",
60
+ "transformers_version": "4.29.1",
61
+ "type_vocab_size": 1,
62
+ "use_cache": true,
63
+ "vocab_size": 250002
64
+ }