system HF staff commited on
Commit
99b3ca5
1 Parent(s): 5d81f0e

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +69 -0
config.json ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_num_labels": 9,
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.2,
7
+ "bad_words_ids": null,
8
+ "bos_token_id": null,
9
+ "decoder_start_token_id": null,
10
+ "do_sample": false,
11
+ "early_stopping": false,
12
+ "eos_token_id": null,
13
+ "finetuning_task": null,
14
+ "hidden_act": "gelu",
15
+ "hidden_dropout_prob": 0.3,
16
+ "hidden_size": 768,
17
+ "id2label": {
18
+ "0": "B-loc",
19
+ "1": "B-misc",
20
+ "2": "B-org",
21
+ "3": "B-per",
22
+ "4": "I-loc",
23
+ "5": "I-misc",
24
+ "6": "I-org",
25
+ "7": "I-per",
26
+ "8": "O"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 3072,
30
+ "is_decoder": false,
31
+ "is_encoder_decoder": false,
32
+ "label2id": {
33
+ "B-loc": 0,
34
+ "B-misc": 1,
35
+ "B-org": 2,
36
+ "B-per": 3,
37
+ "I-loc": 4,
38
+ "I-misc": 5,
39
+ "I-org": 6,
40
+ "I-per": 7,
41
+ "O": 8
42
+ },
43
+ "layer_norm_eps": 1e-12,
44
+ "length_penalty": 1.0,
45
+ "max_length": 20,
46
+ "max_position_embeddings": 512,
47
+ "min_length": 0,
48
+ "model_type": "bert",
49
+ "no_repeat_ngram_size": 0,
50
+ "num_attention_heads": 12,
51
+ "num_beams": 1,
52
+ "num_hidden_layers": 12,
53
+ "num_return_sequences": 1,
54
+ "output_attentions": false,
55
+ "output_hidden_states": false,
56
+ "output_past": true,
57
+ "pad_token_id": 0,
58
+ "prefix": null,
59
+ "pruned_heads": {},
60
+ "repetition_penalty": 1.0,
61
+ "task_specific_params": null,
62
+ "temperature": 1.0,
63
+ "top_k": 50,
64
+ "top_p": 1.0,
65
+ "torchscript": false,
66
+ "type_vocab_size": 2,
67
+ "use_bfloat16": false,
68
+ "vocab_size": 30000
69
+ }