Anonymous2023 commited on
Commit
c0297e8
1 Parent(s): 6ed0eb9

Create config.json

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