from local

This commit is contained in:
dohe0342 2023-02-14 02:50:51 +09:00
parent 6729f21ab4
commit a649daa1cd
3 changed files with 7 additions and 0 deletions

View File

@ -132,6 +132,13 @@ def add_model_arguments(parser: argparse.ArgumentParser) -> None:
default=256,
help="Attention dimension in the conformer model.",
)
parser.add_argument(
"--kernel-size",
type=int,
default=15,
help="Attention dimension in the conformer model.",
)
def get_parser() -> argparse.ArgumentParser: