from local

This commit is contained in:
dohe0342 2022-12-10 13:24:34 +09:00
parent d2d6f5fa84
commit c4d233e809
2 changed files with 7 additions and 0 deletions

View File

@ -124,6 +124,13 @@ def add_model_arguments(parser: argparse.ArgumentParser):
default="8,8,8,8,8",
help="Number of attention heads in the zipformer encoder layers.",
)
parser.add_argument(
"--encoder-dim",
type=int,
default=768,
help="Encoder embedding dimension",
)
parser.add_argument(
"--encoder-dims",