Holako commited on
Commit
f3731ca
·
1 Parent(s): fd80abe

Upload config.json

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