From 364a4c383856be3fc545bba966b67cce76ba0725 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Wed, 9 Nov 2022 13:27:27 +0800 Subject: [PATCH] Reduce pos_dim from 384 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 148e3a8cf..9cafe7047 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py @@ -162,7 +162,7 @@ def add_model_arguments(parser: argparse.ArgumentParser): parser.add_argument( "--pos-dim", type=int, - default="384", + default="128", help="Positional-encoding embedding dimension" )