Skip to content
Snippets Groups Projects

Fixed multiword prediction + bug that made the code write empty predictions

Merged Martyna Wiącek requested to merge multiword_fix into main
Viewing commit 17322ce9
Show latest version
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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(),