system HF staff commited on
Commit
898b412
1 Parent(s): 15781b7

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +60 -0
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForTokenClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "directionality": "bidi",
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "ADJ",
14
+ "2": "ADP",
15
+ "3": "ADV",
16
+ "4": "CONJ",
17
+ "5": "DET",
18
+ "6": "NOUN",
19
+ "7": "NUM",
20
+ "8": "PART",
21
+ "9": "PART_NEG",
22
+ "10": "PRON",
23
+ "11": "PRON_WH",
24
+ "12": "PROPN",
25
+ "13": "VERB",
26
+ "14": "X"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 3072,
30
+ "label2id": {
31
+ "ADJ": 1,
32
+ "ADP": 2,
33
+ "ADV": 3,
34
+ "CONJ": 4,
35
+ "DET": 5,
36
+ "NOUN": 6,
37
+ "NUM": 7,
38
+ "O": 0,
39
+ "PART": 8,
40
+ "PART_NEG": 9,
41
+ "PRON": 10,
42
+ "PRON_WH": 11,
43
+ "PROPN": 12,
44
+ "VERB": 13,
45
+ "X": 14
46
+ },
47
+ "layer_norm_eps": 1e-12,
48
+ "max_position_embeddings": 512,
49
+ "model_type": "bert",
50
+ "num_attention_heads": 12,
51
+ "num_hidden_layers": 12,
52
+ "pad_token_id": 0,
53
+ "pooler_fc_size": 768,
54
+ "pooler_num_attention_heads": 12,
55
+ "pooler_num_fc_layers": 3,
56
+ "pooler_size_per_head": 128,
57
+ "pooler_type": "first_token_transform",
58
+ "type_vocab_size": 2,
59
+ "vocab_size": 119547
60
+ }