Views
No views yet
| File | Quantization | Quality | Use Case |
|---|---|---|---|
qwen2.5-14b-instruct_function_calling_xlam-q4_k_m.gguf | Q4_K_M | Good | Recommended - Best balance of quality and size |
qwen2.5-14b-instruct_function_calling_xlam-q5_k_m.gguf | Q5_K_M | Better | Higher quality, moderate size increase |
qwen2.5-14b-instruct_function_calling_xlam-q8_0.gguf | Q8_0 | Best | Highest quality quantization |
1# Download Q4_K_M (recommended)
2huggingface-cli download ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF qwen2.5-14b-instruct_function_calling_xlam-q4_k_m.gguf --local-dir ./models
3
4# Download Q5_K_M (higher quality)
5huggingface-cli download ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF qwen2.5-14b-instruct_function_calling_xlam-q5_k_m.gguf --local-dir ./models
6
7# Download Q8_0 (best quality)
8huggingface-cli download ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF qwen2.5-14b-instruct_function_calling_xlam-q8_0.gguf --local-dir ./models
9
10# Download all quantizations
11huggingface-cli download ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF --local-dir ./models1# Q4_K_M
2wget https://huggingface.co/ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF/resolve/main/qwen2.5-14b-instruct_function_calling_xlam-q4_k_m.gguf
3
4# Q5_K_M
5wget https://huggingface.co/ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF/resolve/main/qwen2.5-14b-instruct_function_calling_xlam-q5_k_m.gguf
6
7# Q8_0
8wget https://huggingface.co/ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF/resolve/main/qwen2.5-14b-instruct_function_calling_xlam-q8_0.gguf1# Pull specific quantization
2ollama pull hf.co/ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF:Q4_K_M
3
4# Or create from local file
5cat > Modelfile << EOF
6FROM ./qwen2.5-14b-instruct_function_calling_xlam-q4_k_m.gguf
7EOF
8
9ollama create qwen2.5-14b-instruct_function_calling_xlam -f Modelfile
10ollama run qwen2.5-14b-instruct_function_calling_xlam1# Run with llama-cli
2./llama-cli -m qwen2.5-14b-instruct_function_calling_xlam-q4_k_m.gguf -p "Your prompt here" -n 256
3
4# Run as server
5./llama-server -m qwen2.5-14b-instruct_function_calling_xlam-q4_k_m.gguf --host 0.0.0.0 --port 80801from llama_cpp import Llama
2
3llm = Llama(
4 model_path="qwen2.5-14b-instruct_function_calling_xlam-q4_k_m.gguf",
5 n_ctx=2048,
6 n_gpu_layers=-1 # Use all GPU layers
7)
8
9output = llm(
10 "What is machine learning?",
11 max_tokens=256,
12 temperature=0.7,
13)
14print(output['choices'][0]['text'])| Property | Value |
|---|---|
| Source Model | ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM |
| Conversion Date | 2026-04-09 |
| Quantizations | Q4_K_M, Q5_K_M, Q8_0 |
| Converter | llama.cpp |
1@misc{azarkhalili2026_qwen2_5_14b_instruct_function_calling_xlam_gguf,
2 author = {Azarkhalili, Behrooz},
3 title = {Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF},
4 year = {2026},
5 publisher = {Hugging Face},
6 url = {https://huggingface.co/ermiaazarkhalili/Qwen2.5-14B-Instruct_Function_Calling_xLAM-GGUF}
7}To generate a citable DOI, click "Cite this model" on the model page.