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

ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5-GGUF overview

Qwen3.5 0.8B SFT Fable5 — GGUF Quantized GGUF builds of Qwen3.5 0.8B SFT Fable5 https://huggingface.co/ermiaazarkhalili/Qwen3.5 0.8B SFT Fable5 , a unsloth/Qwe…

ggufquantizedllama-cppollamalm-studiosftdistillationfablecreative-writingtext-generationenbase_model:ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5base_model:quantized:ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5license:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~504.8 MB disk (4 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
qwen3.5-0.8b-sft-fable5.q4_k_m.ggufGGUFGGUF504.8 MBDownload
qwen3.5-0.8b-sft-fable5.q5_k_m.ggufGGUFGGUF551.2 MBDownload
qwen3.5-0.8b-sft-fable5.q8_0.ggufGGUFGGUF774.2 MBDownload

Model Details

Model IDermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5-GGUF
Authorermiaazarkhalili
Pipelinetext-generation
Licenseapache-2.0
Base modelermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5
Last modified2026-07-09T05:32:12.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/Qwen3.5-0.8B-SFT-Fable5

---

Qwen3.5-0.8B-SFT-Fable5 — GGUF

Quantized GGUF builds of Qwen3.5-0.8B-SFT-Fable5, a

unsloth/Qwen3.5-0.8B model supervised-fine-tuned on the FABLE-5 Complete-2M 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 | Qwen3.5-0.8B-SFT-Fable5 |

| Base model | unsloth/Qwen3.5-0.8B |

| Parameter class | 0.8B |

| Model family | dense |

| Training method | LoRA SFT (distillation), assistant-only loss masking |

| Dataset | FABLE-5 Complete-2M traces (private) |

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

What is FABLE-5 Complete-2M?

This model was fine-tuned on FABLE-5 Complete-2M, the full ~2M-trace FABLE-5 corpus

(cleaned). 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 |

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

| qwen3.5-0.8b-sft-fable5.q4_k_m.gguf | Q4_K_M | ~529 MB | Recommended — best quality/size balance |

| qwen3.5-0.8b-sft-fable5.q5_k_m.gguf | Q5_K_M | ~578 MB | Higher quality |

| qwen3.5-0.8b-sft-fable5.q8_0.gguf | Q8_0 | ~812 MB | 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

ollama run hf.co/ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5-GGUF:Q4_K_M "Write a short story about a clockwork fox."

llama.cpp

# One-shot
llama-cli -hf ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5-GGUF --jinja -p "Write a short fable about ambition." -n 512
# Interactive chat
llama-cli -hf ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5-GGUF --jinja -cnv

llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5-GGUF",
    filename="*q4_k_m.gguf",
    n_ctx=4096,
)
out = llm.create_chat_completion(
    messages=[{"role": "user", "content": "Write a short fable about ambition."}],
    max_tokens=512,
)
print(out["choices"][0]["message"]["content"])

Intended use & limitations

Research and non-commercial experimentation with FABLE-5-style creative / agentic

generation. As GGUF quantizations these carry unavoidable quality loss versus the source

safetensors weights — prefer Q8_0 when fidelity matters. Inherits every limitation of the

base model unsloth/Qwen3.5-0.8B and the source fine-tune Qwen3.5-0.8B-SFT-Fable5. Verify

outputs before any downstream use.

Citation

@misc{qwen3_5_0_8b_fable5_gguf,
  author       = {Ermia Azarkhalili},
  title        = {Qwen3.5-0.8B-SFT-Fable5 — GGUF quantized},
  year         = {2026},
  publisher    = {Hugging Face},
  howpublished = {\url{https://huggingface.co/ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5-GGUF}}
}

Run ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5-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