yuewang-sf commited on
Commit
29f74f8
1 Parent(s): b511b90

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +43 -0
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "T5ForConditionalGeneration"
4
+ ],
5
+ "bos_token_id": 1,
6
+ "d_ff": 3072,
7
+ "d_kv": 64,
8
+ "d_model": 768,
9
+ "decoder_start_token_id": 0,
10
+ "dropout_rate": 0.1,
11
+ "eos_token_id": 2,
12
+ "feed_forward_proj": "relu",
13
+ "id2label": {
14
+ "0": "LABEL_0"
15
+ },
16
+ "initializer_factor": 1.0,
17
+ "is_encoder_decoder": true,
18
+ "label2id": {
19
+ "LABEL_0": 0
20
+ },
21
+ "layer_norm_epsilon": 1e-06,
22
+ "model_type": "t5",
23
+ "n_positions": 512,
24
+ "num_decoder_layers": 12,
25
+ "num_heads": 12,
26
+ "num_layers": 12,
27
+ "output_past": true,
28
+ "pad_token_id": 0,
29
+ "relative_attention_num_buckets": 32,
30
+ "task_specific_params": {
31
+ "summarization": {
32
+ "early_stopping": true,
33
+ "length_penalty": 2.0,
34
+ "max_length": 256,
35
+ "min_length": 1,
36
+ "no_repeat_ngram_size": 3,
37
+ "num_beams": 5
38
+ }
39
+ },
40
+ "transformers_version": "4.5.0",
41
+ "use_cache": true,
42
+ "vocab_size": 32100
43
+ }