From e9806950f5bb2cfc1897ef34d4746d7bc0e442e7 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Thu, 17 Nov 2022 23:42:39 +0800 Subject: [PATCH] Reduce pos-dim from 96 to 48. --- 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 8cf451d3e..45513ef5c 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="96", + default="48", help="Positional-encoding embedding dimension" )