system HF staff commited on
Commit
14702cc
1 Parent(s): 0d74412

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +49 -0
config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_num_labels": 3,
3
+ "num_labels": 2,
4
+ "activation_dropout": 0.0,
5
+ "activation_function": "gelu",
6
+ "add_bias_logits": false,
7
+ "add_final_layer_norm": false,
8
+ "architectures": [
9
+ "BartForQuestionAnswering"
10
+ ],
11
+ "attention_dropout": 0.0,
12
+ "bos_token_id": 0,
13
+ "classif_dropout": 0.0,
14
+ "d_model": 1024,
15
+ "decoder_attention_heads": 16,
16
+ "decoder_ffn_dim": 4096,
17
+ "decoder_layerdrop": 0.0,
18
+ "decoder_layers": 12,
19
+ "decoder_start_token_id": 2,
20
+ "dropout": 0.1,
21
+ "encoder_attention_heads": 16,
22
+ "encoder_ffn_dim": 4096,
23
+ "encoder_layerdrop": 0.0,
24
+ "encoder_layers": 12,
25
+ "eos_token_id": 2,
26
+ "init_std": 0.02,
27
+ "is_encoder_decoder": true,
28
+ "max_position_embeddings": 1024,
29
+ "model_type": "bart",
30
+ "normalize_before": false,
31
+ "normalize_embedding": true,
32
+ "num_hidden_layers": 12,
33
+ "output_past": false,
34
+ "pad_token_id": 1,
35
+ "prefix": " ",
36
+ "scale_embedding": false,
37
+ "static_position_embeddings": false,
38
+ "task_specific_params": {
39
+ "summarization": {
40
+ "early_stopping": true,
41
+ "length_penalty": 2.0,
42
+ "max_length": 142,
43
+ "min_length": 56,
44
+ "no_repeat_ngram_size": 3,
45
+ "num_beams": 4
46
+ }
47
+ },
48
+ "vocab_size": 50265
49
+ }