From 1f3de86ec297d63701950422ad1e823e785b0d74 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Fri, 1 Nov 2024 15:32:45 +0100 Subject: [PATCH] clarify unspecified --base --- convert_lora_to_gguf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert_lora_to_gguf.py b/convert_lora_to_gguf.py index c6af4bf06..9fbab8d36 100755 --- a/convert_lora_to_gguf.py +++ b/convert_lora_to_gguf.py @@ -258,7 +258,7 @@ def parse_args() -> argparse.Namespace: ) parser.add_argument( "--base", type=Path, - help="directory containing Hugging Face model config files (config.json, tokenizer.json) for the base model that the adapter is based on - only config is needed, actual model weights are not required", + help="directory containing Hugging Face model config files (config.json, tokenizer.json) for the base model that the adapter is based on - only config is needed, actual model weights are not required. If base model is unspecified, it will be loaded from Hugging Face hub based on the adapter config", ) parser.add_argument( "lora_path", type=Path,