GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint-GGUF overview

Carnice 9B SFT Fable5 Glint — GGUF Quantized GGUF builds of Carnice 9B SFT Fable5 Glint https://huggingface.co/ermiaazarkhalili/Carnice 9B SFT Fable5 Glint , a…

ggufquantizedllama-cppollamalm-studiosftdistillationfablecreative-writingtext-generationenbase_model:ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glintbase_model:quantized:ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glintlicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~5.24 GB disk (8 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
text-generation

Repository Files & Downloads

3 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
carnice-9b-sft-fable5-glint.q4_k_m.ggufGGUFGGUF5.24 GBDownload
carnice-9b-sft-fable5-glint.q5_k_m.ggufGGUFGGUF6.02 GBDownload
carnice-9b-sft-fable5-glint.q8_0.ggufGGUFGGUF8.87 GBDownload

Model Details

Model IDermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint-GGUF
Authorermiaazarkhalili
Pipelinetext-generation
Licenseapache-2.0
Base modelermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint
Last modified2026-06-27T21:10:07.000Z

Model README

---

license: apache-2.0

language:

- en

library_name: gguf

pipeline_tag: text-generation

tags:

- gguf

- quantized

- llama-cpp

- ollama

- lm-studio

- sft

- distillation

- fable

- creative-writing

base_model: ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint

---

Carnice-9B-SFT-Fable5-Glint — GGUF

Quantized GGUF builds of Carnice-9B-SFT-Fable5-Glint, a

kai-os/Carnice-9b model supervised-fine-tuned on the

FABLE-5 trace corpus. These files run locally with

llama.cpp, Ollama,

LM Studio, and any GGUF-compatible runtime — no GPU required for the

smaller quants.

Overview

| | |

|---|---|

| Fine-tuned model | Carnice-9B-SFT-Fable5-Glint |

| Base model | kai-os/Carnice-9b |

| Parameter class | 9B |

| Model family | dense |

| Training method | LoRA SFT (distillation) |

| Domain | FABLE-5 creative / agentic traces |

| Format | GGUF (this repo) · safetensors (merged repo) |

Standard dense decoder base.

What is FABLE-5?

This model was fine-tuned on FABLE-5-Glint, a cleaned corpus of FABLE-5 pi-agent

reasoning traces (each target completion may include a <think>…</think> reasoning span

followed by the response). Training used assistant-only loss masking so the model learns to

produce the response, not echo the prompt. The dataset is private; the fine-tuned weights

are public.

Available Quantizations

| File | Quant | Size | Notes |

|------|-------|------|-------|

| carnice-9b-sft-fable5-glint.q4_k_m.gguf | Q4_K_M | ~5.2 GB | Recommended — best quality/size balance |

| carnice-9b-sft-fable5-glint.q5_k_m.gguf | Q5_K_M | ~6.0 GB | Higher quality |

| carnice-9b-sft-fable5-glint.q8_0.gguf | Q8_0 | ~8.9 GB | Maximum quality (near-lossless) |

Which to pick: Q4_K_M is the best size/quality trade-off for most users. Use Q5_K_M

if you have spare RAM/VRAM and want a little more fidelity, or Q8_0 for near-lossless output

when size is not a concern.

Usage

Ollama

# Pull + run the recommended Q4_K_M quant directly from the Hub
ollama run hf.co/ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint-GGUF:Q4_K_M "Write a short story about a clockwork fox."

To pin a different quant, swap the tag (e.g. :Q5_K_M, :Q8_0).

llama.cpp

# Download a single quant, then run it
huggingface-cli download ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint-GGUF carnice-9b-sft-fable5-glint.q4_k_m.gguf --local-dir .
llama-cli -m carnice-9b-sft-fable5-glint.q4_k_m.gguf -p "Write a short story about a clockwork fox." -n 512

# Or serve an OpenAI-compatible endpoint
llama-server -m carnice-9b-sft-fable5-glint.q4_k_m.gguf --host 0.0.0.0 --port 8080

LM Studio

Search for ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint-GGUF in LM Studio, or download a .gguf above and load it from disk.

Python (llama-cpp-python)

from llama_cpp import Llama
llm = Llama.from_pretrained(repo_id="ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint-GGUF", filename="*q4_k_m.gguf", n_ctx=4096)
out = llm.create_chat_completion(
    messages=[{"role": "user", "content": "Write a short story about a clockwork fox."}]
)
print(out["choices"][0]["message"]["content"])

Prompt format

Use the base model's chat template (applied automatically by Ollama / LM Studio /

create_chat_completion). The model was trained on 2-turn user → assistant chats. For

thinking-style bases, the model may emit a <think>…</think> span before its answer.

Training details

| Hyperparameter | Value |

|---|---|

| Method | LoRA SFT, merged to 16-bit then quantized |

| LoRA rank / α | 16 / 16 |

| Learning rate | 0.0002 |

| LR scheduler | cosine (warmup 0.03) |

| Max sequence length | 4096 |

| Epochs | 3 |

| Loss masking | assistant-only |

| Quantization toolchain | llama.cpp convert_hf_to_gguf + llama-quantize |

A deterministic ~5% slice of the corpus was held out from training for evaluation.

Intended use & limitations

  • Intended: local/offline creative writing, reasoning-trace style generation, and

experimentation with FABLE-5-distilled behavior on consumer hardware.

  • Limitations: inherits the base model's knowledge cutoff and biases; quantization

(especially Q4_K_M) trades some fidelity for size; not safety-tuned for production use

without additional guardrails. Outputs may be fictional/unverified.

Citation

@misc{azarkhalili2026carnice9bsftfable5glint,
    author = {Azarkhalili, Behrooz},
    title  = {Carnice-9B-SFT-Fable5-Glint: FABLE-5 SFT distillation (GGUF)},
    year   = {2026},
    publisher = {Hugging Face},
    url    = {https://huggingface.co/ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint-GGUF}
}

Run ermiaazarkhalili/Carnice-9B-SFT-Fable5-Glint-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models