Remove mention of -1 for early stopping (fix #7535)

Maybe this used to work differently, but currently a negative patience
just causes immediate termination.
This commit is contained in:
Paul O'Leary McCann 2021-03-23 11:50:35 +09:00
parent 4bd3d01aaf
commit cdab341a75

View File

@ -68,7 +68,7 @@ seed = ${system.seed}
gpu_allocator = ${system.gpu_allocator}
dropout = 0.1
accumulate_gradient = 1
# Controls early-stopping. 0 or -1 mean unlimited.
# Controls early-stopping. 0 disables early stopping.
patience = 1600
max_epochs = 0
max_steps = 20000