rabden commited on
Commit
5ca7824
·
verified ·
1 Parent(s): 1ddbad1

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +85 -0
config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 32100,
3
+ "d_model": 1024,
4
+ "d_kv": 64,
5
+ "d_ff": 2816,
6
+ "num_layers": 24,
7
+ "num_decoder_layers": 24,
8
+ "num_heads": 16,
9
+ "relative_attention_num_buckets": 32,
10
+ "relative_attention_max_distance": 128,
11
+ "dropout_rate": 0.1,
12
+ "classifier_dropout": 0.0,
13
+ "layer_norm_epsilon": 1e-06,
14
+ "initializer_factor": 1.0,
15
+ "feed_forward_proj": "gated-gelu",
16
+ "use_cache": true,
17
+ "dense_act_fn": "gelu_new",
18
+ "is_gated_act": true,
19
+ "return_dict": true,
20
+ "output_hidden_states": false,
21
+ "torchscript": false,
22
+ "dtype": "float32",
23
+ "pruned_heads": {},
24
+ "tie_word_embeddings": false,
25
+ "chunk_size_feed_forward": 0,
26
+ "is_encoder_decoder": true,
27
+ "is_decoder": false,
28
+ "cross_attention_hidden_size": null,
29
+ "add_cross_attention": false,
30
+ "tie_encoder_decoder": false,
31
+ "architectures": [
32
+ "T5ForConditionalGeneration"
33
+ ],
34
+ "finetuning_task": null,
35
+ "id2label": {
36
+ "0": "LABEL_0",
37
+ "1": "LABEL_1"
38
+ },
39
+ "label2id": {
40
+ "LABEL_0": 0,
41
+ "LABEL_1": 1
42
+ },
43
+ "task_specific_params": null,
44
+ "problem_type": null,
45
+ "tokenizer_class": null,
46
+ "prefix": null,
47
+ "bos_token_id": null,
48
+ "pad_token_id": 0,
49
+ "eos_token_id": 1,
50
+ "sep_token_id": null,
51
+ "decoder_start_token_id": 0,
52
+ "max_length": 20,
53
+ "min_length": 0,
54
+ "do_sample": false,
55
+ "early_stopping": false,
56
+ "num_beams": 1,
57
+ "temperature": 1.0,
58
+ "top_k": 50,
59
+ "top_p": 1.0,
60
+ "typical_p": 1.0,
61
+ "repetition_penalty": 1.0,
62
+ "length_penalty": 1.0,
63
+ "no_repeat_ngram_size": 0,
64
+ "encoder_no_repeat_ngram_size": 0,
65
+ "bad_words_ids": null,
66
+ "num_return_sequences": 1,
67
+ "output_scores": false,
68
+ "return_dict_in_generate": false,
69
+ "forced_bos_token_id": null,
70
+ "forced_eos_token_id": null,
71
+ "remove_invalid_values": false,
72
+ "exponential_decay_length_penalty": null,
73
+ "suppress_tokens": null,
74
+ "begin_suppress_tokens": null,
75
+ "num_beam_groups": 1,
76
+ "diversity_penalty": 0.0,
77
+ "_name_or_path": "google/flan-t5-large",
78
+ "transformers_version": "4.57.6",
79
+ "model_type": "t5",
80
+ "n_positions": 512,
81
+ "output_past": true,
82
+ "tf_legacy_loss": false,
83
+ "use_bfloat16": false,
84
+ "output_attentions": false
85
+ }