system HF staff commited on
Commit
c842729
1 Parent(s): 7b31251

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +48 -0
config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "attention_probs_dropout_prob": 0.1,
3
+ "directionality": "bidi",
4
+ "finetuning_task": null,
5
+ "hidden_act": "gelu",
6
+ "hidden_dropout_prob": 0.1,
7
+ "hidden_size": 1024,
8
+ "initializer_range": 0.02,
9
+ "intermediate_size": 4096,
10
+ "layer_norm_eps": 1e-12,
11
+ "max_position_embeddings": 512,
12
+ "num_attention_heads": 16,
13
+ "num_hidden_layers": 24,
14
+ "num_labels": 9,
15
+ "output_attentions": false,
16
+ "output_hidden_states": false,
17
+ "pooler_fc_size": 768,
18
+ "pooler_num_attention_heads": 12,
19
+ "pooler_num_fc_layers": 3,
20
+ "pooler_size_per_head": 128,
21
+ "pooler_type": "first_token_transform",
22
+ "pruned_heads": {},
23
+ "torchscript": false,
24
+ "type_vocab_size": 2,
25
+ "vocab_size": 28996,
26
+ "label2id": {
27
+ "O": 0,
28
+ "B-MISC": 1,
29
+ "I-MISC": 2,
30
+ "B-PER": 3,
31
+ "I-PER": 4,
32
+ "B-ORG": 5,
33
+ "I-ORG": 6,
34
+ "B-LOC": 7,
35
+ "I-LOC": 8
36
+ },
37
+ "id2label": {
38
+ "0": "O",
39
+ "1": "B-MISC",
40
+ "2": "I-MISC",
41
+ "3": "B-PER",
42
+ "4": "I-PER",
43
+ "5": "B-ORG",
44
+ "6": "I-ORG",
45
+ "7": "B-LOC",
46
+ "8": "I-LOC"
47
+ }
48
+ }