From ff03ec88a52311b412d62873302a5aa92e302316 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Sat, 29 Oct 2022 15:56:02 +0800 Subject: [PATCH] Tuning change to num encoder layers, inspired by relative param importance. --- 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 f3d9a5ac6..21679589f 100755 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/train.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/train.py @@ -93,7 +93,7 @@ def add_model_arguments(parser: argparse.ArgumentParser): parser.add_argument( "--num-encoder-layers", type=str, - default="2,3,3,3,3,3", + default="2,4,3,2,2,4", help="Number of zipformer encoder layers, comma separated.", )