Small tweak to ensemble textcat model

This commit is contained in:
Matthew Honnibal 2019-03-23 16:46:30 +01:00
parent 200d8bdb3c
commit f436efd8a4
1 changed files with 1 additions and 1 deletions

View File

@ -592,7 +592,7 @@ def build_text_classifier(nr_class, width=64, **cfg):
)
linear_model = build_bow_text_classifier(
nr_class, ngram_size=cfg.get("ngram_size", 1), no_output_layer=True)
nr_class, ngram_size=cfg.get("ngram_size", 1), exclusive_classes=False)
if cfg.get('exclusive_classes'):
output_layer = Softmax(nr_class, nr_class * 2)
else: