batch_by_words by default

This commit is contained in:
Matthw Honnibal 2020-07-08 21:37:06 +02:00
parent 93e50da46a
commit 1b20ffac38

View File

@ -307,7 +307,7 @@ def create_train_batches(nlp, corpus, cfg):
if len(train_examples) == 0:
raise ValueError(Errors.E988)
epoch += 1
if cfg.get("batch_by_words"):
if cfg.get("batch_by_words", True):
batches = util.minibatch_by_words(
train_examples,
size=cfg["batch_size"],