From 17322ce97af49186ee9466aa5660f6a82eaf1576 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martyna=20Wi=C4=85cek?= <martyna.wiacek@ipipan.waw.pl> Date: Sat, 10 Feb 2024 22:16:25 +0100 Subject: [PATCH] fix embedding_dim in default_model --- combo/default_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combo/default_model.py b/combo/default_model.py index 47d2b14..a781845 100644 --- a/combo/default_model.py +++ b/combo/default_model.py @@ -160,7 +160,7 @@ def default_model(pretrained_transformer_name: str, vocabulary: Vocabulary, use_ activations=[GELUActivation(), GELUActivation(), GELUActivation(), LinearActivation()], char_vocab_namespace="token_characters", dilation=[1, 2, 4, 1], - embedding_dim=256, + embedding_dim=300, filters=[256, 256, 256], input_projection_layer=Linear( activation=TanhActivation(), -- GitLab