From 42197e791c34a1763d4172c6444607c601389b00 Mon Sep 17 00:00:00 2001 From: system Date: Tue, 11 Aug 2020 13:02:21 +0000 Subject: [PATCH] Update config.json --- config.json | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..d534ce6 --- /dev/null +++ b/config.json @@ -0,0 +1,53 @@ +{ + "activation_dropout": 0.0, + "activation_function": "gelu", + "add_bias_logits": false, + "add_final_layer_norm": false, + "architectures": [ + "BlenderbotForConditionalGeneration" + ], + "attention_dropout": 0.0, + "bos_token_id": 1, + "classif_dropout": 0.0, + "d_model": 2560, + "decoder_attention_heads": 32, + "decoder_ffn_dim": 10240, + "decoder_layerdrop": 0.0, + "decoder_layers": 24, + "dropout": 0.1, + "encoder_attention_heads": 32, + "encoder_ffn_dim": 10240, + "encoder_layerdrop": 0.0, + "encoder_layers": 2, + "eos_token_id": 2, + "extra_layer_norm": false, + "extra_pos_embeddings": 0, + "id2label": { + "0": "LABEL_0", + "1": "LABEL_1", + "2": "LABEL_2" + }, + "init_std": 0.02, + "is_encoder_decoder": true, + "label2id": { + "LABEL_0": 0, + "LABEL_1": 1, + "LABEL_2": 2 + }, + "length_penalty": 0.65, + "max_length": 60, + "max_position_embeddings": 128, + "min_length": 20, + "model_type": "blenderbot", + "no_repeat_ngram_size": 3, + "normalize_before": true, + "normalize_embedding": true, + "num_beams": 10, + "num_hidden_layers": 2, + "pad_token_id": 0, + "scale_embedding": true, + "static_position_embeddings": true, + "unk_token_id": 3, + "variant": "prelayernorm", + "vocab_size": 8008 +}