Change LR schedule to start off higher

This commit is contained in:
Daniel Povey 2022-10-16 11:45:33 +08:00
parent 29d4e8ec6d
commit ae0067c384

View File

@ -224,7 +224,7 @@ def get_parser():
parser.add_argument( parser.add_argument(
"--initial-lr", "--initial-lr",
type=float, type=float,
default=0.03, default=0.04,
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.",
) )
@ -240,7 +240,7 @@ def get_parser():
parser.add_argument( parser.add_argument(
"--lr-epochs", "--lr-epochs",
type=float, type=float,
default=6, default=3.5,
help="""Number of epochs that affects how rapidly the learning rate decreases. help="""Number of epochs that affects how rapidly the learning rate decreases.
""", """,
) )