system HF staff commited on
Commit
796d1de
1 Parent(s): 6ec031d

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +49 -0
config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "MobileBertForTokenClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_activation": false,
7
+ "embedding_size": 128,
8
+ "hidden_act": "relu",
9
+ "hidden_dropout_prob": 0.0,
10
+ "hidden_size": 512,
11
+ "id2label": {
12
+ "0": "B-LOC",
13
+ "1": "B-MISC",
14
+ "2": "B-ORG",
15
+ "3": "I-LOC",
16
+ "4": "I-MISC",
17
+ "5": "I-ORG",
18
+ "6": "I-PER",
19
+ "7": "O"
20
+ },
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 512,
23
+ "intra_bottleneck_size": 128,
24
+ "key_query_shared_bottleneck": true,
25
+ "label2id": {
26
+ "B-LOC": 0,
27
+ "B-MISC": 1,
28
+ "B-ORG": 2,
29
+ "I-LOC": 3,
30
+ "I-MISC": 4,
31
+ "I-ORG": 5,
32
+ "I-PER": 6,
33
+ "O": 7
34
+ },
35
+ "layer_norm_eps": 1e-12,
36
+ "max_position_embeddings": 512,
37
+ "model_type": "mobilebert",
38
+ "normalization_type": "no_norm",
39
+ "num_attention_heads": 4,
40
+ "num_feedforward_networks": 4,
41
+ "num_hidden_layers": 24,
42
+ "pad_token_id": 0,
43
+ "trigram_input": true,
44
+ "true_hidden_size": 128,
45
+ "type_vocab_size": 2,
46
+ "use_bottleneck": true,
47
+ "use_bottleneck_attention": false,
48
+ "vocab_size": 30522
49
+ }