system HF staff commited on
Commit
d8ce6f1
1 Parent(s): 31b0cd1

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +71 -0
config.json ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.0,
3
+ "activation_function": "relu",
4
+ "add_bias_logits": false,
5
+ "add_final_layer_norm": true,
6
+ "architectures": [
7
+ "PegasusForConditionalGeneration"
8
+ ],
9
+ "attention_dropout": 0.0,
10
+ "bos_token_id": 0,
11
+ "classif_dropout": 0.0,
12
+ "d_model": 1024,
13
+ "decoder_attention_heads": 16,
14
+ "decoder_ffn_dim": 4096,
15
+ "decoder_layerdrop": 0.0,
16
+ "decoder_layers": 2,
17
+ "dropout": 0.0,
18
+ "encoder_attention_heads": 16,
19
+ "encoder_ffn_dim": 4096,
20
+ "encoder_layerdrop": 0.0,
21
+ "encoder_layers": 12,
22
+ "eos_token_id": 1,
23
+ "extra_pos_embeddings": 1,
24
+ "force_bos_token_to_be_generated": false,
25
+ "id2label": {
26
+ "0": "LABEL_0",
27
+ "1": "LABEL_1",
28
+ "2": "LABEL_2"
29
+ },
30
+ "init_metadata": {
31
+ "copied_decoder_layers": [
32
+ 0,
33
+ 8
34
+ ],
35
+ "copied_encoder_layers": [
36
+ 0,
37
+ 1,
38
+ 2,
39
+ 3,
40
+ 4,
41
+ 5,
42
+ 6,
43
+ 7,
44
+ 9,
45
+ 11,
46
+ 13,
47
+ 15
48
+ ],
49
+ "teacher_type": "pegasus"
50
+ },
51
+ "init_std": 0.02,
52
+ "is_encoder_decoder": true,
53
+ "label2id": {
54
+ "LABEL_0": 0,
55
+ "LABEL_1": 1,
56
+ "LABEL_2": 2
57
+ },
58
+ "length_penalty": 0.8,
59
+ "max_length": 128,
60
+ "max_position_embeddings": 1024,
61
+ "model_type": "pegasus",
62
+ "normalize_before": true,
63
+ "normalize_embedding": false,
64
+ "num_beams": 8,
65
+ "num_hidden_layers": 12,
66
+ "pad_token_id": 0,
67
+ "save_step": 3,
68
+ "scale_embedding": true,
69
+ "static_position_embeddings": true,
70
+ "vocab_size": 96103
71
+ }