Remove unused arg

This commit is contained in:
Daniel Povey 2022-05-26 15:18:03 +08:00
parent 8e454bcf9e
commit 61e7929c60

View File

@ -274,19 +274,6 @@ def get_parser():
""",
)
parser.add_argument(
"--average-decay",
type=int,
default=100,
help="""Update the averaged model, namely `model_avg`, after processing
this number of batches. `model_avg` is a separate version of model,
in which each floating-point parameter is the average of all the
parameters from the start of training. Each time we take the average,
we do: `model_avg = model * (average_period / batch_idx_train) +
model_avg * ((batch_idx_train - average_period) / batch_idx_train)`.
""",
)
parser.add_argument(
"--use-fp16",
type=str2bool,