Views
No views yet
ermiaazarkhalili/Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth,
produced via Unsloth + llama.cpp's conversion scripts.| Field | Value |
|---|---|
| Source checkpoint | ermiaazarkhalili/Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth |
| Base model | Qwen/Qwen3.5-0.8B |
| Dataset | Salesforce/xlam-function-calling-60k |
| Training | N=1 full epoch (7,500 steps, effective batch=8) |
| Conversion | Unsloth save_pretrained_gguf → llama.cpp GGUF |
| Quantization tool | llama.cpp llama-quantize |
| File | Size | Notes |
|---|---|---|
Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth.Q2_K.gguf | smallest | 2-bit; extreme compression, quality loss |
Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth.Q3_K_M.gguf | small | 3-bit; modest quality trade-off |
Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth.Q4_K_M.gguf | recommended | 4-bit; best size/quality balance |
Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth.Q5_K_M.gguf | balanced | 5-bit; near-full quality |
Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth.Q6_K.gguf | high quality | 6-bit; minimal degradation |
Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth.Q8_0.gguf | largest | 8-bit; closest to bf16 source |
Q4_K_M (4-bit, K-quant medium). For memory-constrained deployment, try Q2_K or Q3_K_M. For maximum fidelity, use Q8_0.1# Text-only
2llama-cli -hf ermiaazarkhalili/Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth-GGUF --jinja -p "Find flights from SFO to NYC on December 25th" -n 256
3
4# Interactive chat
5llama-cli -hf ermiaazarkhalili/Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth-GGUF --jinja -cnvollama run hf.co/ermiaazarkhalili/Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth-GGUF:Q4_K_M1from llama_cpp import Llama
2llm = Llama.from_pretrained(
3 repo_id="ermiaazarkhalili/Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth-GGUF",
4 filename="*Q4_K_M.gguf",
5 n_ctx=2048,
6)
7out = llm.create_chat_completion(
8 messages=[{"role": "user", "content": "Find flights from SFO to NYC on December 25th"}],
9 max_tokens=256,
10)
11print(out["choices"][0]["message"]["content"])Q5_K_M or Q8_0 for best fidelity.ermiaazarkhalili/Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth).1@misc{ qwen35_08b_xlam_unsloth_2026_gguf ,
2 author = {Ermia Azarkhalili},
3 title = { Qwen3.5-0.8B-xLAM-Unsloth — GGUF quantized },
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/ermiaazarkhalili/Qwen3.5-0.8B-Function-Calling-xLAM-Unsloth-GGUF}}
7}