Angelakeke commited on
Commit
b7ddd95
1 Parent(s): 572476c

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +61 -0
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/deberta-v3-base",
3
+ "architectures": [
4
+ "DebertaV2ForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "id2label": {
11
+ "0": "B-ABNORMALITY",
12
+ "1": "I-ABNORMALITY",
13
+ "2": "B-NON-ABNORMALITY",
14
+ "3": "I-NON-ABNORMALITY",
15
+ "4": "B-DISEASE",
16
+ "5": "I-DISEASE",
17
+ "6": "B-NON-DISEASE",
18
+ "7": "I-NON-DISEASE",
19
+ "8": "B-ANATOMY",
20
+ "9": "I-ANATOMY",
21
+ "10": "O"
22
+ },
23
+ "initializer_range": 0.02,
24
+ "intermediate_size": 3072,
25
+ "label2id": {
26
+ "B-ABNORMALITY": 0,
27
+ "I-ABNORMALITY": 1,
28
+ "B-NON-ABNORMALITY": 2,
29
+ "I-NON-ABNORMALITY": 3,
30
+ "B-DISEASE": 4,
31
+ "I-DISEASE": 5,
32
+ "B-NON-DISEASE": 6,
33
+ "I-NON-DISEASE": 7,
34
+ "B-ANATOMY": 8,
35
+ "I-ANATOMY": 9,
36
+ "O": 10
37
+ },
38
+ "layer_norm_eps": 1e-07,
39
+ "max_position_embeddings": 512,
40
+ "max_relative_positions": -1,
41
+ "model_type": "deberta-v2",
42
+ "norm_rel_ebd": "layer_norm",
43
+ "num_attention_heads": 12,
44
+ "num_hidden_layers": 12,
45
+ "pad_token_id": 0,
46
+ "pooler_dropout": 0,
47
+ "pooler_hidden_act": "gelu",
48
+ "pooler_hidden_size": 768,
49
+ "pos_att_type": [
50
+ "p2c",
51
+ "c2p"
52
+ ],
53
+ "position_biased_input": false,
54
+ "position_buckets": 256,
55
+ "relative_attention": true,
56
+ "share_att_key": true,
57
+ "torch_dtype": "float32",
58
+ "transformers_version": "4.38.1",
59
+ "type_vocab_size": 0,
60
+ "vocab_size": 128100
61
+ }