Set dropout rate to 0.2

This commit is contained in:
Matthew Honnibal 2018-12-08 19:59:11 +01:00
parent 2c2db0c492
commit cb16b78b0d
1 changed files with 2 additions and 2 deletions

View File

@ -112,8 +112,8 @@ def train(
# Batch size starts at 1 and grows, so that we make updates quickly
# at the beginning of training.
dropout_rates = util.decaying(
util.env_opt("dropout_from", 0.1),
util.env_opt("dropout_to", 0.1),
util.env_opt("dropout_from", 0.2),
util.env_opt("dropout_to", 0.2),
util.env_opt("dropout_decay", 0.0),
)
batch_sizes = util.compounding(