Shoriful025 commited on
Commit
ebf26da
·
verified ·
1 Parent(s): c5e4d0e

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +27 -0
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "RoBERTaForSequenceClassification"
4
+ ],
5
+ "hidden_size": 768,
6
+ "num_hidden_layers": 12,
7
+ "num_attention_heads": 12,
8
+ "intermediate_size": 3072,
9
+ "hidden_act": "gelu",
10
+ "max_position_embeddings": 514,
11
+ "type_vocab_size": 1,
12
+ "initializer_range": 0.02,
13
+ "layer_norm_eps": 1e-05,
14
+ "model_type": "roberta",
15
+ "id2label": {
16
+ "0": "NEUTRAL",
17
+ "1": "BIASED_LANGUAGE",
18
+ "2": "DISCRIMINATORY_FLAG"
19
+ },
20
+ "label2id": {
21
+ "NEUTRAL": 0,
22
+ "BIASED_LANGUAGE": 1,
23
+ "DISCRIMINATORY_FLAG": 2
24
+ },
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.37.0"
27
+ }