Fix style

This commit is contained in:
pkufool 2022-01-20 11:58:47 +08:00
parent e46409e90f
commit ea6b7c5160

View File

@ -140,14 +140,16 @@ def get_parser():
"--lm-scale", "--lm-scale",
type=float, type=float,
default=0.0, default=0.0,
help="The scale to smooth the loss with lm (output of prediction network) part.", help="The scale to smooth the loss with lm "
"(output of prediction network) part.",
) )
parser.add_argument( parser.add_argument(
"--am-scale", "--am-scale",
type=float, type=float,
default=0.0, default=0.0,
help="The scale to smooth the loss with am (output of encoder network) part.", help="The scale to smooth the loss with am (output of encoder network)"
"part.",
) )
return parser return parser