From da5deebda10738818ab5f9e1c07b9856b8e43631 Mon Sep 17 00:00:00 2001 From: teleprint-me <77757836+teleprint-me@users.noreply.github.com> Date: Sat, 18 May 2024 23:34:33 -0400 Subject: [PATCH] fix: Apply fix to verbose help description and generating vocab tests option --- gguf-py/scripts/gguf-gen-pre.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gguf-py/scripts/gguf-gen-pre.py b/gguf-py/scripts/gguf-gen-pre.py index 0e4bb40e5..7991d6344 100644 --- a/gguf-py/scripts/gguf-gen-pre.py +++ b/gguf-py/scripts/gguf-gen-pre.py @@ -151,13 +151,13 @@ def main(): parser = argparse.ArgumentParser() parser.add_argument("hf_auth_token", help="A huggingface read auth token") parser.add_argument( - "-v", "--verbose", action="store_true", help="A huggingface read auth token" + "-v", "--verbose", action="store_true", help="Increase output verbosity." ) parser.add_argument( "-m", "--model-path", default=None, help="The models storage path. Default is 'models/'." ) parser.add_argument( - "-t", "--gen-tests", action="store_true", help="Generate the tokenizer tests. Default is False." + "-t", "--gen-vocab-tests", action="store_true", help="Generate the tokenizer tests. Default is False." ) parser.add_argument( "-s", "--gen-vocab-script", action="store_true", help="Generate the gguf vocab files. Default is False."