system HF staff commited on
Commit
07ba1e4
1 Parent(s): 1aa014c

Update config.json

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