From d6ef1bec5f6d8693939b0f88807b2b28488b62d2 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Wed, 28 Sep 2022 21:10:13 +0800 Subject: [PATCH] Change subsamplling factor from 1 to 2 --- 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 7d9ec647e..f35b0e7af 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py @@ -121,7 +121,7 @@ def add_model_arguments(parser: argparse.ArgumentParser): parser.add_argument( "--conformer-subsampling-factor", type=int, - default=1, + default=2, help="Subsampling factor for 2nd stack of encoder layers.", )