Change subsamplling factor from 1 to 2

This commit is contained in:
Daniel Povey 2022-09-28 21:10:13 +08:00
parent 14a2603ada
commit d6ef1bec5f

View File

@ -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.",
)