diff --git a/convert_hf_to_gguf.py b/convert_hf_to_gguf.py index 43936352b..7b1697ff3 100755 --- a/convert_hf_to_gguf.py +++ b/convert_hf_to_gguf.py @@ -3589,7 +3589,7 @@ def parse_args() -> argparse.Namespace: ) parser.add_argument( "--metadata", type=Path, - help="Specify the path for a metadata file" + help="Specify the path for an authorship metadata override file" ) parser.add_argument( "--get-outfile", action="store_true", diff --git a/examples/convert_legacy_llama.py b/examples/convert_legacy_llama.py index f3839861c..30cc66d59 100755 --- a/examples/convert_legacy_llama.py +++ b/examples/convert_legacy_llama.py @@ -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("--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("--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("--model-name", type=str, default=None, help="name of the model")