Skip to content

Commit fb6dd20

Browse files
committed
fix: Update script paths in CI scripts
1 parent f2f09c0 commit fb6dd20

6 files changed

+4
-4
lines changed

ci/run.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ function gg_run_open_llama_3b_v2 {
340340
gg_wget ${path_lora} https://huggingface.co/slaren/open_llama_3b_v2_shakespeare_lora/resolve/main/adapter_model.bin
341341
gg_wget ${path_shakespeare} https://huggingface.co/slaren/open_llama_3b_v2_shakespeare_lora/resolve/main/shakespeare.txt
342342

343-
python3 ../convert-lora-to-ggml.py ${path_lora}
343+
python3 ../convert_lora_to_ggml.py ${path_lora}
344344

345345
# f16
346346
(time ./bin/perplexity --model ${model_f16} -f ${shakespeare} -c 128 -b 128 --chunks 2 ) 2>&1 | tee -a $OUT/${ci}-ppl-shakespeare-f16.log
@@ -521,7 +521,7 @@ function gg_run_open_llama_7b_v2 {
521521
gg_wget ${path_lora} https://huggingface.co/slaren/open_llama_7b_v2_shakespeare_lora/resolve/main/adapter_model.bin
522522
gg_wget ${path_shakespeare} https://huggingface.co/slaren/open_llama_7b_v2_shakespeare_lora/resolve/main/shakespeare.txt
523523

524-
python3 ../convert-lora-to-ggml.py ${path_lora}
524+
python3 ../convert_lora_to_ggml.py ${path_lora}
525525

526526
# f16
527527
(time ./bin/perplexity --model ${model_f16} -f ${shakespeare} -t 1 -ngl 999 -c 2048 -b 512 --chunks 3 ) 2>&1 | tee -a $OUT/${ci}-ppl-shakespeare-f16.log
@@ -594,7 +594,7 @@ function gg_run_embd_bge_small {
594594
(time cmake -DCMAKE_BUILD_TYPE=Release ${CMAKE_EXTRA} .. ) 2>&1 | tee -a $OUT/${ci}-cmake.log
595595
(time make -j ) 2>&1 | tee -a $OUT/${ci}-make.log
596596

597-
python3 ../convert-hf-to-gguf.py ${path_models}
597+
python3 ../convert_hf_to_gguf.py ${path_models}
598598

599599
model_f16="${path_models}/ggml-model-f16.gguf"
600600
model_q8_0="${path_models}/ggml-model-q8_0.gguf"

scripts/check-requirements.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ if (( do_cleanup )); then
167167
fi
168168

169169
check_convert_script convert.py
170-
for py in convert-*.py; do
170+
for py in convert_*.py; do
171171
check_convert_script "$py"
172172
done
173173

0 commit comments

Comments
 (0)