ralcanta commited on
Commit
6fe4115
1 Parent(s): f528485

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +135 -0
config.json ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "EncoderDecoderModel"
4
+ ],
5
+ "decoder": {
6
+ "_name_or_path": "bert-base-uncased",
7
+ "add_cross_attention": true,
8
+ "architectures": [
9
+ "BertForMaskedLM"
10
+ ],
11
+ "attention_probs_dropout_prob": 0.1,
12
+ "bad_words_ids": null,
13
+ "bos_token_id": 101,
14
+ "chunk_size_feed_forward": 0,
15
+ "decoder_start_token_id": null,
16
+ "do_sample": false,
17
+ "early_stopping": false,
18
+ "eos_token_id": 102,
19
+ "finetuning_task": null,
20
+ "gradient_checkpointing": false,
21
+ "hidden_act": "gelu",
22
+ "hidden_dropout_prob": 0.1,
23
+ "hidden_size": 768,
24
+ "id2label": {
25
+ "0": "LABEL_0",
26
+ "1": "LABEL_1"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 3072,
30
+ "is_decoder": true,
31
+ "is_encoder_decoder": false,
32
+ "label2id": {
33
+ "LABEL_0": 0,
34
+ "LABEL_1": 1
35
+ },
36
+ "layer_norm_eps": 1e-12,
37
+ "length_penalty": 1.0,
38
+ "max_length": 20,
39
+ "max_position_embeddings": 512,
40
+ "min_length": 0,
41
+ "model_type": "bert-generation",
42
+ "no_repeat_ngram_size": 0,
43
+ "num_attention_heads": 12,
44
+ "num_beams": 1,
45
+ "num_hidden_layers": 12,
46
+ "num_return_sequences": 1,
47
+ "output_attentions": false,
48
+ "output_hidden_states": false,
49
+ "pad_token_id": 0,
50
+ "prefix": null,
51
+ "pruned_heads": {},
52
+ "repetition_penalty": 1.0,
53
+ "return_dict": false,
54
+ "sep_token_id": null,
55
+ "task_specific_params": null,
56
+ "temperature": 1.0,
57
+ "tie_encoder_decoder": false,
58
+ "tie_word_embeddings": true,
59
+ "tokenizer_class": null,
60
+ "top_k": 50,
61
+ "top_p": 1.0,
62
+ "torchscript": false,
63
+ "type_vocab_size": 2,
64
+ "use_bfloat16": false,
65
+ "use_cache": true,
66
+ "vocab_size": 30522,
67
+ "xla_device": null
68
+ },
69
+ "encoder": {
70
+ "_name_or_path": "bert-base-uncased",
71
+ "add_cross_attention": false,
72
+ "architectures": [
73
+ "BertForMaskedLM"
74
+ ],
75
+ "attention_probs_dropout_prob": 0.1,
76
+ "bad_words_ids": null,
77
+ "bos_token_id": 101,
78
+ "chunk_size_feed_forward": 0,
79
+ "decoder_start_token_id": null,
80
+ "do_sample": false,
81
+ "early_stopping": false,
82
+ "eos_token_id": 102,
83
+ "finetuning_task": null,
84
+ "gradient_checkpointing": false,
85
+ "hidden_act": "gelu",
86
+ "hidden_dropout_prob": 0.1,
87
+ "hidden_size": 768,
88
+ "id2label": {
89
+ "0": "LABEL_0",
90
+ "1": "LABEL_1"
91
+ },
92
+ "initializer_range": 0.02,
93
+ "intermediate_size": 3072,
94
+ "is_decoder": false,
95
+ "is_encoder_decoder": false,
96
+ "label2id": {
97
+ "LABEL_0": 0,
98
+ "LABEL_1": 1
99
+ },
100
+ "layer_norm_eps": 1e-12,
101
+ "length_penalty": 1.0,
102
+ "max_length": 20,
103
+ "max_position_embeddings": 512,
104
+ "min_length": 0,
105
+ "model_type": "bert-generation",
106
+ "no_repeat_ngram_size": 0,
107
+ "num_attention_heads": 12,
108
+ "num_beams": 1,
109
+ "num_hidden_layers": 12,
110
+ "num_return_sequences": 1,
111
+ "output_attentions": false,
112
+ "output_hidden_states": false,
113
+ "pad_token_id": 0,
114
+ "prefix": null,
115
+ "pruned_heads": {},
116
+ "repetition_penalty": 1.0,
117
+ "return_dict": false,
118
+ "sep_token_id": null,
119
+ "task_specific_params": null,
120
+ "temperature": 1.0,
121
+ "tie_encoder_decoder": false,
122
+ "tie_word_embeddings": true,
123
+ "tokenizer_class": null,
124
+ "top_k": 50,
125
+ "top_p": 1.0,
126
+ "torchscript": false,
127
+ "type_vocab_size": 2,
128
+ "use_bfloat16": false,
129
+ "use_cache": true,
130
+ "vocab_size": 30522,
131
+ "xla_device": null
132
+ },
133
+ "is_encoder_decoder": true,
134
+ "model_type": "encoder-decoder"
135
+ }