from local

This commit is contained in:
dohe0342 2023-01-08 18:47:42 +09:00
parent 0dee499553
commit 47acc91729
2 changed files with 6 additions and 0 deletions

View File

@ -171,6 +171,12 @@ def add_model_arguments(parser: argparse.ArgumentParser):
default=4,
help="How many left context can be seen in chunks when calculating attention.",
)
parser.add_argument(
"--group-size",
type=int,
default=4,
help="How many left context can be seen in chunks when calculating attention.",
)
def get_parser():