From 1faad6ddac2d17f0e90d71ec8c621ce991ed91eb Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Fri, 21 Jul 2023 21:58:21 +0300 Subject: [PATCH] examples : rename to use dash instead of underscore --- examples/{make_ggml.py => make-ggml.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename examples/{make_ggml.py => make-ggml.py} (98%) diff --git a/examples/make_ggml.py b/examples/make-ggml.py similarity index 98% rename from examples/make_ggml.py rename to examples/make-ggml.py index a0e4c4e90..f63d9fc22 100644 --- a/examples/make_ggml.py +++ b/examples/make-ggml.py @@ -2,7 +2,7 @@ This script converts Hugging Face llama models to GGML and quantizes them. Usage: -python make_ggml.py --model {model_dir_or_hf_repo_name} [--outname {output_name} (Optional)] [--outdir {output_directory} (Optional)] [--quants {quant_types} (Optional)] [--keep_fp16 (Optional)] +python make-ggml.py --model {model_dir_or_hf_repo_name} [--outname {output_name} (Optional)] [--outdir {output_directory} (Optional)] [--quants {quant_types} (Optional)] [--keep_fp16 (Optional)] Arguments: - --model: (Required) The directory of the downloaded Hugging Face model or the name of the Hugging Face model repository. If the model directory does not exist, it will be downloaded from the Hugging Face model hub.