Fix type of parameter

This commit is contained in:
Daniel Povey 2022-04-05 00:18:36 +08:00
parent 179d0605ea
commit 234366e51c

View File

@ -160,7 +160,7 @@ def get_parser():
parser.add_argument( parser.add_argument(
"--num-lr-decays", "--num-lr-decays",
type=float, type=int,
default=4, default=4,
help="The total number of times we decay (halve) the learning rate" help="The total number of times we decay (halve) the learning rate"
) )