convert-*.py: adjust help message

This commit is contained in:
brian khuu 2024-06-03 23:56:14 +10:00
parent dd1571211e
commit b0553f42da
2 changed files with 2 additions and 2 deletions

View file

@ -3589,7 +3589,7 @@ def parse_args() -> argparse.Namespace:
) )
parser.add_argument( parser.add_argument(
"--metadata", type=Path, "--metadata", type=Path,
help="Specify the path for a metadata file" help="Specify the path for an authorship metadata override file"
) )
parser.add_argument( parser.add_argument(
"--get-outfile", action="store_true", "--get-outfile", action="store_true",

View file

@ -1256,7 +1256,7 @@ def main(args_in: list[str] | None = None) -> None:
parser.add_argument("--pad-vocab", action="store_true", help="add pad tokens when model vocab expects more than tokenizer metadata provides") parser.add_argument("--pad-vocab", action="store_true", help="add pad tokens when model vocab expects more than tokenizer metadata provides")
parser.add_argument("--skip-unknown", action="store_true", help="skip unknown tensor names instead of failing") parser.add_argument("--skip-unknown", action="store_true", help="skip unknown tensor names instead of failing")
parser.add_argument("--verbose", action="store_true", help="increase output verbosity") parser.add_argument("--verbose", action="store_true", help="increase output verbosity")
parser.add_argument("--metadata", type=Path, help="Specify the path for a metadata file") parser.add_argument("--metadata", type=Path, help="Specify the path for an authorship metadata override file")
parser.add_argument("--get-outfile", action="store_true", help="get calculated default outfile name") parser.add_argument("--get-outfile", action="store_true", help="get calculated default outfile name")
parser.add_argument("--model-name", type=str, default=None, help="name of the model") parser.add_argument("--model-name", type=str, default=None, help="name of the model")