From ea6b7c5160d27049f5cdd80a0bf05d13cf3db89f Mon Sep 17 00:00:00 2001 From: pkufool Date: Thu, 20 Jan 2022 11:58:47 +0800 Subject: [PATCH] Fix style --- egs/aishell/ASR/transducer_stateless/train.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/egs/aishell/ASR/transducer_stateless/train.py b/egs/aishell/ASR/transducer_stateless/train.py index 31d417c3b..7336c4312 100755 --- a/egs/aishell/ASR/transducer_stateless/train.py +++ b/egs/aishell/ASR/transducer_stateless/train.py @@ -140,14 +140,16 @@ def get_parser(): "--lm-scale", type=float, 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( "--am-scale", type=float, 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