Skip to content

Commit 3ebd51f

Browse files
kriationNeo Zhang
authored andcommitted
docker : fix filename for convert-hf-to-gguf.py in tools.sh (ggml-org#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.
1 parent 757ae96 commit 3ebd51f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devops/tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ arg1="$1"
88
shift
99

1010
if [[ "$arg1" == '--convert' || "$arg1" == '-c' ]]; then
11-
python3 ./convert-hf-to-gguf.py "$@"
11+
python3 ./convert_hf_to_gguf.py "$@"
1212
elif [[ "$arg1" == '--quantize' || "$arg1" == '-q' ]]; then
1313
./llama-quantize "$@"
1414
elif [[ "$arg1" == '--run' || "$arg1" == '-r' ]]; then

0 commit comments

Comments
 (0)