Rohan Bhambhoria commited on
Commit
761adb0
1 Parent(s): ae6056d

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +38 -0
config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForTokenClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "hidden_act": "gelu",
7
+ "hidden_dropout_prob": 0.1,
8
+ "hidden_size": 768,
9
+ "id2label": {
10
+ "0": "O",
11
+ "1": "I-treatment",
12
+ "2": "I-test",
13
+ "3": "I-problem",
14
+ "4": "B-treatment",
15
+ "5": "B-test",
16
+ "6": "B-problem"
17
+ },
18
+ "initializer_range": 0.02,
19
+ "intermediate_size": 3072,
20
+ "label2id": {
21
+ "B-problem": 6,
22
+ "B-test": 5,
23
+ "B-treatment": 4,
24
+ "I-problem": 3,
25
+ "I-test": 2,
26
+ "I-treatment": 1,
27
+ "O": 0
28
+ },
29
+ "layer_norm_eps": 1e-12,
30
+ "max_position_embeddings": 512,
31
+ "model_type": "bert",
32
+ "num_attention_heads": 12,
33
+ "num_hidden_layers": 12,
34
+ "pad_token_id": 0,
35
+ "tui_size": 44,
36
+ "type_vocab_size": 2,
37
+ "vocab_size": 28996
38
+ }