Corrected type of seed parameter.
This commit is contained in:
intrafind 2019-06-03 18:32:47 +02:00 committed by Matthew Honnibal
parent 62ebc65c62
commit 2bba2a3536
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ from .. import util
batch_size=("Number of words per training batch", "option", "bs", int),
max_length=("Max words per example.", "option", "xw", int),
min_length=("Min words per example.", "option", "nw", int),
seed=("Seed for random number generators", "option", "s", float),
seed=("Seed for random number generators", "option", "s", int),
n_iter=("Number of iterations to pretrain", "option", "i", int),
n_save_every=("Save model every X batches.", "option", "se", int),
)