From 603be9933b8ed488b0662781f296a08e5e5c47b6 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Fri, 11 Nov 2022 23:21:32 +0800 Subject: [PATCH] Reducd pos-head-dim from 8 to 2 # Conflicts: # egs/librispeech/ASR/pruned_transducer_stateless7/train.py --- 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 af7503ada..a1664df3f 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py @@ -155,7 +155,7 @@ def add_model_arguments(parser: argparse.ArgumentParser): parser.add_argument( "--pos-head-dim", type=str, - default="4", + default="2", help="Positional-encoding dimension per head in encoder stacks: a single int or comma-separated list." )