From: Armen Kaleshian Date: Fri, 12 Jul 2024 08:08:19 +0000 (-0400) Subject: docker : fix filename for convert-hf-to-gguf.py in tools.sh (#8441) X-Git-Tag: upstream/0.0.4488~1107 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=8a4441ea1a2564578134404f31158c318e9c0bf3;p=pkg%2Fggml%2Fsources%2Fllama.cpp docker : fix filename for convert-hf-to-gguf.py in tools.sh (#8441) Commit b0a4699 changed the name of this script from convert-hf-to-gguf.py to convert_hf_to_gguf.py breaking how convert is called from within a Docker container. --- diff --git a/.devops/tools.sh b/.devops/tools.sh index 335382f6..cf0e8f32 100755 --- a/.devops/tools.sh +++ b/.devops/tools.sh @@ -8,7 +8,7 @@ arg1="$1" shift if [[ "$arg1" == '--convert' || "$arg1" == '-c' ]]; then - python3 ./convert-hf-to-gguf.py "$@" + python3 ./convert_hf_to_gguf.py "$@" elif [[ "$arg1" == '--quantize' || "$arg1" == '-q' ]]; then ./llama-quantize "$@" elif [[ "$arg1" == '--run' || "$arg1" == '-r' ]]; then