from local

This commit is contained in:
dohe0342 2023-01-09 15:25:16 +09:00
parent 585f346a95
commit 1b91ff52d4
2 changed files with 2 additions and 2 deletions

View File

@ -294,14 +294,14 @@ def add_model_arguments(parser: argparse.ArgumentParser):
parser.add_argument(
"--decoder-dim",
type=int,
default=512,
default=768,
help="Embedding dimension in the decoder model.",
)
parser.add_argument(
"--joiner-dim",
type=int,
default=512,
default=768,
help="""Dimension used in the joiner model.
Outputs from the encoder and decoder model are projected
to this dimension before adding.