Increase initial-lr from 0.06 to 0.075 and decrease lr-epochs from 3.5 to 3.

This commit is contained in:
Daniel Povey 2022-10-22 15:04:08 +08:00
parent 74d775014d
commit 1d4382555c

View File

@ -231,7 +231,7 @@ def get_parser():
parser.add_argument( parser.add_argument(
"--initial-lr", "--initial-lr",
type=float, type=float,
default=0.06, default=0.075,
help="The initial learning rate. This value should not need " help="The initial learning rate. This value should not need "
"to be changed.", "to be changed.",
) )
@ -247,7 +247,7 @@ def get_parser():
parser.add_argument( parser.add_argument(
"--lr-epochs", "--lr-epochs",
type=float, type=float,
default=3.5, default=3,
help="""Number of epochs that affects how rapidly the learning rate decreases. help="""Number of epochs that affects how rapidly the learning rate decreases.
""", """,
) )