]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
finetune: Rename an old command name in finetune.sh (#8344)
authorstandby24x7 <redacted>
Sun, 7 Jul 2024 10:37:47 +0000 (19:37 +0900)
committerGitHub <redacted>
Sun, 7 Jul 2024 10:37:47 +0000 (13:37 +0300)
This patch replaces an old commad "main" with "llama-cli"
in finetune.sh.
The part that I fixed is comment, so it doesn't change
the script.

Signed-off-by: Masanari Iida <redacted>
examples/finetune/finetune.sh

index d7f2165e5cb3af4d07e37e707a4572b31d6b3af7..e3cc7f2712f17eb22117ce1bb855824bf32b3489 100644 (file)
@@ -8,7 +8,7 @@ if [[ ! $LLAMA_MODEL_DIR ]]; then LLAMA_MODEL_DIR="./models"; fi
 if [[ ! $LLAMA_TRAINING_DIR ]]; then LLAMA_TRAINING_DIR="."; fi
 
 # MODEL="$LLAMA_MODEL_DIR/openllama-3b-v2-q8_0.gguf" # This is the model the readme uses.
-MODEL="$LLAMA_MODEL_DIR/openllama-3b-v2.gguf" # An f16 model. Note in this case with "-g", you get an f32-format .BIN file that isn't yet supported if you use it with "main --lora" with GPU inferencing.
+MODEL="$LLAMA_MODEL_DIR/openllama-3b-v2.gguf" # An f16 model. Note in this case with "-g", you get an f32-format .BIN file that isn't yet supported if you use it with "llama-cli --lora" with GPU inferencing.
 
 while getopts "dg" opt; do
   case $opt in