system HF staff commited on
Commit
cda503f
1 Parent(s): b10ec74

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +82 -0
config.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_num_labels": 2,
3
+ "architectures": [
4
+ "T5ForConditionalGeneration"
5
+ ],
6
+ "bad_words_ids": null,
7
+ "bos_token_id": null,
8
+ "d_ff": 3072,
9
+ "d_kv": 64,
10
+ "d_model": 768,
11
+ "decoder_start_token_id": 0,
12
+ "do_sample": false,
13
+ "dropout_rate": 0.1,
14
+ "early_stopping": false,
15
+ "eos_token_id": 1,
16
+ "finetuning_task": null,
17
+ "id2label": {
18
+ "0": "LABEL_0",
19
+ "1": "LABEL_1"
20
+ },
21
+ "initializer_factor": 1.0,
22
+ "is_decoder": false,
23
+ "is_encoder_decoder": true,
24
+ "label2id": {
25
+ "LABEL_0": 0,
26
+ "LABEL_1": 1
27
+ },
28
+ "layer_norm_epsilon": 1e-06,
29
+ "length_penalty": 1.0,
30
+ "max_length": 20,
31
+ "min_length": 0,
32
+ "model_type": "t5",
33
+ "n_positions": 512,
34
+ "no_repeat_ngram_size": 0,
35
+ "num_beams": 1,
36
+ "num_heads": 12,
37
+ "num_layers": 12,
38
+ "num_return_sequences": 1,
39
+ "output_attentions": false,
40
+ "output_hidden_states": false,
41
+ "output_past": true,
42
+ "pad_token_id": 0,
43
+ "prefix": null,
44
+ "pruned_heads": {},
45
+ "relative_attention_num_buckets": 32,
46
+ "repetition_penalty": 1.0,
47
+ "task_specific_params": {
48
+ "summarization": {
49
+ "early_stopping": true,
50
+ "length_penalty": 2.0,
51
+ "max_length": 200,
52
+ "min_length": 30,
53
+ "no_repeat_ngram_size": 3,
54
+ "num_beams": 4,
55
+ "prefix": "summarize: "
56
+ },
57
+ "translation_en_to_de": {
58
+ "early_stopping": true,
59
+ "max_length": 300,
60
+ "num_beams": 4,
61
+ "prefix": "translate English to German: "
62
+ },
63
+ "translation_en_to_fr": {
64
+ "early_stopping": true,
65
+ "max_length": 300,
66
+ "num_beams": 4,
67
+ "prefix": "translate English to French: "
68
+ },
69
+ "translation_en_to_ro": {
70
+ "early_stopping": true,
71
+ "max_length": 300,
72
+ "num_beams": 4,
73
+ "prefix": "translate English to Romanian: "
74
+ }
75
+ },
76
+ "temperature": 1.0,
77
+ "top_k": 50,
78
+ "top_p": 1.0,
79
+ "torchscript": false,
80
+ "use_bfloat16": false,
81
+ "vocab_size": 32101
82
+ }