system HF staff commited on
Commit
f4d98ed
1 Parent(s): 4d4ccab

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +67 -0
config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForTokenClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "bos_token_id": null,
7
+ "directionality": "bidi",
8
+ "do_sample": false,
9
+ "eos_token_ids": null,
10
+ "finetuning_task": null,
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "hidden_size": 1024,
14
+ "id2label": {
15
+ "0": "O",
16
+ "1": "B-MISC",
17
+ "2": "I-MISC",
18
+ "3": "B-PER",
19
+ "4": "I-PER",
20
+ "5": "B-ORG",
21
+ "6": "I-ORG",
22
+ "7": "B-LOC",
23
+ "8": "I-LOC"
24
+ },
25
+ "initializer_range": 0.02,
26
+ "intermediate_size": 4096,
27
+ "is_decoder": false,
28
+ "label2id": {
29
+ "B-LOC": 7,
30
+ "B-MISC": 1,
31
+ "B-ORG": 5,
32
+ "B-PER": 3,
33
+ "I-LOC": 8,
34
+ "I-MISC": 2,
35
+ "I-ORG": 6,
36
+ "I-PER": 4,
37
+ "O": 0
38
+ },
39
+ "layer_norm_eps": 1e-12,
40
+ "length_penalty": 1.0,
41
+ "max_length": 20,
42
+ "max_position_embeddings": 512,
43
+ "model_type": "bert",
44
+ "num_attention_heads": 16,
45
+ "num_beams": 1,
46
+ "num_hidden_layers": 24,
47
+ "num_labels": 9,
48
+ "num_return_sequences": 1,
49
+ "output_attentions": false,
50
+ "output_hidden_states": false,
51
+ "output_past": true,
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
+ "pruned_heads": {},
59
+ "repetition_penalty": 1.0,
60
+ "temperature": 1.0,
61
+ "top_k": 50,
62
+ "top_p": 1.0,
63
+ "torchscript": false,
64
+ "type_vocab_size": 2,
65
+ "use_bfloat16": false,
66
+ "vocab_size": 28996
67
+ }