]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
examples/training: Fix file name in README (#13803)
authorstandby24x7 <redacted>
Mon, 26 May 2025 14:55:24 +0000 (23:55 +0900)
committerGitHub <redacted>
Mon, 26 May 2025 14:55:24 +0000 (16:55 +0200)
This patch fixes binary file names in README.md.

Signed-off-by: Masanari Iida <redacted>
examples/training/README.md

index ecdf398f81e1418fed80e30c08feed55ea88ae7a..df425279266e40517fede3e4a02e7fc377fb7954 100644 (file)
@@ -10,8 +10,8 @@ Proof of concept:
 
 ``` sh
 export model_name=llama_3.2-1b && export quantization=f32
-./build/bin/finetune --file wikitext-2-raw/wiki.test.raw -ngl 999 --model models/${model_name}-${quantization}.gguf -c 512 -b 512 -ub 512
-./build/bin/perplexity --file wikitext-2-raw/wiki.test.raw -ngl 999 --model finetuned-model.gguf
+./build/bin/llama-finetune --file wikitext-2-raw/wiki.test.raw -ngl 999 --model models/${model_name}-${quantization}.gguf -c 512 -b 512 -ub 512
+./build/bin/llama-perplexity --file wikitext-2-raw/wiki.test.raw -ngl 999 --model finetuned-model.gguf
 ```
 
 The perplexity value of the finetuned model should be lower after training on the test set for 2 epochs.