Views
No views yet
llama.cpp and install it following the official guide. We follow the latest version of llama.cpp.
In the following demonstration, we assume that you are running commands under the repository llama.cpp.huggingface-cli:pip install -U huggingface_hubhuggingface-cli download Qwen/Qwen2.5-32B-Instruct-GGUF --include "qwen2.5-32b-instruct-q5_k_m*.gguf" --local-dir . --local-dir-use-symlinks Falseqwen2.5-32b-instruct-q5_k_m-00001-of-00006.gguf to qwen2.5-32b-instruct-q5_k_m-00006-of-00006.gguf. The above command will download all of them.llama-gguf-split as shown below:
1# ./llama-gguf-split --merge <first-split-file-path> <merged-file-path>
2./llama-gguf-split --merge qwen2.5-32b-instruct-q5_k_m-00001-of-00006.gguf qwen2.5-32b-instruct-q5_k_m.gguf1./llama-cli -m <gguf-file-path> \
2 -co -cnv -p "You are Qwen, created by Alibaba Cloud. You are a helpful assistant." \
3 -fa -ngl 80 -n 512