From d542fa61ffcac1e22f7ef634beb8dafb51990507 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Tue, 15 Nov 2022 15:34:43 +0800 Subject: [PATCH] Double pos_dim from 64 to 128. --- egs/librispeech/ASR/pruned_transducer_stateless7/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py index 138cba3db..58f61d8a4 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py @@ -164,7 +164,7 @@ def add_model_arguments(parser: argparse.ArgumentParser): parser.add_argument( "--pos-dim", type=int, - default="64", + default="128", help="Positional-encoding embedding dimension" )