Shoriful025 commited on
Commit
2b37f66
·
verified ·
1 Parent(s): 31fd69c

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +44 -0
config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "RobertaForTokenClassification"
4
+ ],
5
+ "hidden_size": 768,
6
+ "num_hidden_layers": 12,
7
+ "num_attention_heads": 12,
8
+ "intermediate_size": 3072,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "attention_probs_dropout_prob": 0.1,
12
+ "max_position_embeddings": 514,
13
+ "type_vocab_size": 1,
14
+ "initializer_range": 0.02,
15
+ "layer_norm_eps": 1e-05,
16
+ "id2label": {
17
+ "0": "O",
18
+ "1": "B-SCOPE1",
19
+ "2": "I-SCOPE1",
20
+ "3": "B-SCOPE2",
21
+ "4": "I-SCOPE2",
22
+ "5": "B-SCOPE3",
23
+ "6": "I-SCOPE3",
24
+ "7": "B-UNIT",
25
+ "8": "I-UNIT",
26
+ "9": "B-TARGET_YEAR"
27
+ },
28
+ "label2id": {
29
+ "O": 0,
30
+ "B-SCOPE1": 1,
31
+ "I-SCOPE1": 2,
32
+ "B-SCOPE2": 3,
33
+ "I-SCOPE2": 4,
34
+ "B-SCOPE3": 5,
35
+ "I-SCOPE3": 6,
36
+ "B-UNIT": 7,
37
+ "I-UNIT": 8,
38
+ "B-TARGET_YEAR": 9
39
+ },
40
+ "model_type": "roberta",
41
+ "torch_dtype": "float32",
42
+ "transformers_version": "4.37.0",
43
+ "vocab_size": 50265
44
+ }