system HF staff commited on
Commit
51e1141
1 Parent(s): 0784b28

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +38 -0
config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_num_labels": 7,
3
+ "architectures": [
4
+ "BertForTokenClassification"
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-LOC",
12
+ "1": "B-ORG",
13
+ "2": "B-PER",
14
+ "3": "I-LOC",
15
+ "4": "I-ORG",
16
+ "5": "I-PER",
17
+ "6": "O"
18
+ },
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 3072,
21
+ "label2id": {
22
+ "B-LOC": 0,
23
+ "B-ORG": 1,
24
+ "B-PER": 2,
25
+ "I-LOC": 3,
26
+ "I-ORG": 4,
27
+ "I-PER": 5,
28
+ "O": 6
29
+ },
30
+ "layer_norm_eps": 1e-12,
31
+ "max_position_embeddings": 512,
32
+ "model_type": "bert",
33
+ "num_attention_heads": 12,
34
+ "num_hidden_layers": 12,
35
+ "pad_token_id": 0,
36
+ "type_vocab_size": 2,
37
+ "vocab_size": 32000
38
+ }