ermiaazarkhalili/Qwen3-4B-Function-Calling-xLAM-Unsloth-GGUF
0197
Qwen3-4B-Function-Calling-xLAM-Unsloth — GGUF quantized
GGUF quantizations of `ermiaazarkhalili/Qwen3-4B-Function-Calling-xLAM-Unsloth`, produced via Unsloth + llama.cpp's conversion scripts.
Available quantizations
Recommended default: Q4_K_M. For maximum fidelity, use Q8_0.
Usage
llama.cpp
llama-cli -hf ermiaazarkhalili/Qwen3-4B-Function-Calling-xLAM-Unsloth-GGUF --jinja -p "Find flights from SFO to NYC on December 25th" -n 256Ollama
ollama run hf.co/ermiaazarkhalili/Qwen3-4B-Function-Calling-xLAM-Unsloth-GGUF:Q4_K_Mllama-cpp-python
from llama_cpp import Llama
llm = Llama.from_pretrained(
repo_id="ermiaazarkhalili/Qwen3-4B-Function-Calling-xLAM-Unsloth-GGUF",
filename="*q4_k_m.gguf",
n_ctx=2048,
)
out = llm.create_chat_completion(
messages=[{"role": "user", "content": "Find flights from SFO to NYC on December 25th"}],
max_tokens=256,
)
print(out["choices"][0]["message"]["content"])Intended use
For research and non-commercial experimentation. Outputs should be independently verified before any downstream use.
Limitations
- GGUF quantizations have unavoidable quality loss vs the bf16 source. Use Q5KM+ for best fidelity.
- Inherits all limitations of the source merged checkpoint (`ermiaazarkhalili/Qwen3-4B-Function-Calling-xLAM-Unsloth`).
Citation
@misc{ qwen3_4b_xlam_unsloth_2026_gguf ,
author = {Ermia Azarkhalili},
title = { Qwen3-4B-Function-Calling-xLAM-Unsloth — GGUF quantized },
year = {2026},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/ermiaazarkhalili/Qwen3-4B-Function-Calling-xLAM-Unsloth-GGUF}}
}This qwen3 model was trained 2× faster with Unsloth and Hugging Face's TRL library.
