ermiaazarkhalili/Carnice-9B-Function-Calling-xLAM-Unsloth-GGUF
061
Carnice-9B-xLAM-Unsloth — GGUF quantized
GGUF quantizations of `ermiaazarkhalili/Carnice-9B-Function-Calling-xLAM-Unsloth`, produced via Unsloth + llama.cpp's conversion scripts.
Available quantizations
Recommended default: Q4_K_M (4-bit, K-quant medium). For maximum fidelity, use Q8_0. (Q2/Q3/Q6 variants are not available — 6-quant conversion exceeded memory limits on MIG 3g.40gb.)
Usage
llama.cpp
# Text-only
llama-cli -hf ermiaazarkhalili/Carnice-9B-Function-Calling-xLAM-Unsloth-GGUF --jinja -p "Find flights from SFO to NYC on December 25th" -n 256
# Interactive chat
llama-cli -hf ermiaazarkhalili/Carnice-9B-Function-Calling-xLAM-Unsloth-GGUF --jinja -cnvOllama
ollama run hf.co/ermiaazarkhalili/Carnice-9B-Function-Calling-xLAM-Unsloth-GGUF:Q4_K_Mllama-cpp-python
from llama_cpp import Llama
llm = Llama.from_pretrained(
repo_id="ermiaazarkhalili/Carnice-9B-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 only. Outputs should be independently verified before any downstream use.
Limitations
- GGUF quantizations have unavoidable quality loss relative to the source bfloat16 checkpoint. Use
Q5_K_MorQ8_0for best fidelity. - Inherits all limitations of the source merged checkpoint (`ermiaazarkhalili/Carnice-9B-Function-Calling-xLAM-Unsloth`).
- Limited to the 60 function schemas covered in the training dataset; performance on novel APIs may degrade. This repo ships 3 of 6 planned quants (Q4KM, Q5KM, Q80); Q2K / Q3KM / Q6_K are unavailable due to memory limits during conversion on MIG 3g.40gb.
Citation
@misc{ carnice_9b_xlam_unsloth_2026_gguf ,
author = {Ermia Azarkhalili},
title = { Carnice-9B-xLAM-Unsloth — GGUF quantized },
year = {2026},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/ermiaazarkhalili/Carnice-9B-Function-Calling-xLAM-Unsloth-GGUF}}
}This gemma2 model was trained 2× faster with Unsloth and Hugging Face's TRL library.
