sjrhuschlee commited on
Commit
729381a
1 Parent(s): 1d23df8

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +74 -0
config.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/flan-t5-base",
3
+ "architectures": [
4
+ "T5ForSequenceClassification"
5
+ ],
6
+ "classifier_dropout": 0.0,
7
+ "d_ff": 2048,
8
+ "d_kv": 64,
9
+ "d_model": 768,
10
+ "decoder_start_token_id": 0,
11
+ "dense_act_fn": "gelu_new",
12
+ "dropout_rate": 0.1,
13
+ "eos_token_id": 1,
14
+ "feed_forward_proj": "gated-gelu",
15
+ "finetuning_task": "mnli",
16
+ "id2label": {
17
+ "0": "entailment",
18
+ "1": "neutral",
19
+ "2": "contradiction"
20
+ },
21
+ "initializer_factor": 1.0,
22
+ "is_encoder_decoder": true,
23
+ "is_gated_act": true,
24
+ "label2id": {
25
+ "contradiction": 2,
26
+ "entailment": 0,
27
+ "neutral": 1
28
+ },
29
+ "layer_norm_epsilon": 1e-06,
30
+ "model_type": "t5",
31
+ "n_positions": 512,
32
+ "num_decoder_layers": 12,
33
+ "num_heads": 12,
34
+ "num_layers": 12,
35
+ "output_past": true,
36
+ "pad_token_id": 0,
37
+ "problem_type": "single_label_classification",
38
+ "relative_attention_max_distance": 128,
39
+ "relative_attention_num_buckets": 32,
40
+ "task_specific_params": {
41
+ "summarization": {
42
+ "early_stopping": true,
43
+ "length_penalty": 2.0,
44
+ "max_length": 200,
45
+ "min_length": 30,
46
+ "no_repeat_ngram_size": 3,
47
+ "num_beams": 4,
48
+ "prefix": "summarize: "
49
+ },
50
+ "translation_en_to_de": {
51
+ "early_stopping": true,
52
+ "max_length": 300,
53
+ "num_beams": 4,
54
+ "prefix": "translate English to German: "
55
+ },
56
+ "translation_en_to_fr": {
57
+ "early_stopping": true,
58
+ "max_length": 300,
59
+ "num_beams": 4,
60
+ "prefix": "translate English to French: "
61
+ },
62
+ "translation_en_to_ro": {
63
+ "early_stopping": true,
64
+ "max_length": 300,
65
+ "num_beams": 4,
66
+ "prefix": "translate English to Romanian: "
67
+ }
68
+ },
69
+ "tie_word_embeddings": false,
70
+ "torch_dtype": "float32",
71
+ "transformers_version": "4.31.0.dev0",
72
+ "use_cache": true,
73
+ "vocab_size": 32128
74
+ }