Huffing Face

AnkitAI/Parable-Qwen3-8B-Claude-Fable-5-GGUF

apache-2.0 7/7 files local @ 0e4e1fb83e73

HF_ENDPOINT=https://huffingface.co \
  python -c "from huggingface_hub import snapshot_download; snapshot_download('AnkitAI/Parable-Qwen3-8B-Claude-Fable-5-GGUF')"

Model card

Parable

๐Ÿชถ Parable-Qwen3-8B โ€” trained on genuine Claude Fable 5 agent traces

The largest Parable: planning, tool use, and <think> reasoning distilled from real Claude Fable 5 and GPT-5.5 agent sessions โ€” not synthetic Q&A.

~6 GB of RAM is all you need. Laptop, mid-range GPU, yesterday's desktop โ€” the Q4 build runs anywhere with that much headroom. One command and you have a private, offline reasoning model on your machine:

ollama run hf.co/AnkitAI/Parable-Qwen3-8B-Claude-Fable-5-GGUF:Q4_K_M

Announcements

๐Ÿ”ฎ v2 is coming. The 3B just got the v2 treatment (13ร— corpus, rebuilt recipe) โ€” the same upgrade lands here next. Same links, in-place.

๐Ÿ“ฆ Full family. This 8B is the largest Parable, alongside Parable-Qwen3-4B โ€” browse the full collection for every size, quant, and eval report.


Pick your size

FileSizeFits inNotes
Q4_K_M4.8 GB~6 GB RAM/VRAMโญ Recommended โ€” best size/quality balance
Q5_K_M5.6 GB~7 GBHigher quality
Q6_K6.4 GB~7.5 GBNear-lossless
Q8_08.3 GB~9.5 GBMaximum quality

Full-precision safetensors (vLLM, transformers, further fine-tuning): Parable-Qwen3-8B-Claude-Fable-5

How to run it

Ollama (chat template ships inside the GGUF โ€” zero config):

ollama run parable/qwen3-fable:8b
# or straight from this repo:
ollama run hf.co/AnkitAI/Parable-Qwen3-8B-Claude-Fable-5-GGUF:Q4_K_M

llama.cpp:

llama-cli -m Parable-Qwen3-8B-Claude-Fable-5-GGUF-Q4_K_M.gguf --jinja \
  -p "Write a bash one-liner to find the 10 largest files in a directory tree."

LM Studio: lms get parable/qwen3-fable, search "parable" in-app, or paste this repo URL (parable on LM Studio Hub).

Python (llama-cpp-python):

from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="AnkitAI/Parable-Qwen3-8B-Claude-Fable-5-GGUF",
    filename="*Q4_K_M.gguf", n_ctx=8192,
)
out = llm.create_chat_completion(
    messages=[{"role": "user", "content": "Write a Python function that retries an HTTP request with exponential backoff."}],
    max_tokens=3000, temperature=0.7,
)
print(out["choices"][0]["message"]["content"])

Thinking mode

Every answer opens with a <think>...</think> reasoning block โ€” native to Qwen3, reinforced by this fine-tune. llama.cpp's --jinja chat mode separates it automatically; strip it before showing replies to end users. Sampling: temperature 0.7, top_p 0.95, and budget max_tokens generously (at least 2500) โ€” trace-trained models think at length before answering.


How it measures

Held-out evals across the Parable family

Held-out test split, identical evaluation code and context length for base and fine-tune:

MetricBase Qwen3-8BParableฮ”
Test loss2.1620.712โˆ’67%

Qualitative review (34 coding/terminal/debugging prompts, strictly graded by mentally executing every answer): 23/34 fully correct, 30/34 correct or partially correct โ€” the highest fully-correct score in the series. We publish these numbers because strict qualitative grading is rare in this niche; judge accordingly.

For reference, the strongest published fine-tune on this data family (a 9B) reports 0.71 validation loss; this release measures 0.712 under our stricter 1,024-token evaluation. Cross-repo numbers are indicative only: splits, tokenizers, and context lengths differ (ours is measured at 1,024 tokens).

What it's trained on

Every example passed a quality gate (schema validation, secrets scrub, length filtering) before training. QLoRA fine-tune (NF4, sequence length 1024) trained on a single 16 GB GPU, quantized with llama.cpp.

Good to know

  • Weakest on config-file generation and stateful shell logic (4/34 in our eval: Makefile targets, log-watcher scripts, Dockerfile layer ordering) โ€” review generated configs before use.
  • Fine-tuned at 1,024-token sequences; the base 128K context stays fully available, so long sessions work, with the fine-tuned behavior strongest in the opening turns.
  • Inherits Qwen3-8B's base behaviors and knowledge cutoff. As with any local model, treat generated commands and code as drafts to review.

Evaluation

Function calling (BFCL V3, AST subset)

Measured 2026-07-29: bfcl-eval at gorilla main, prompting mode, Q4_K_M GGUFs served by llama.cpp on a T4, base and Parable under the identical harness. Categories: simple_python / multiple / parallel / parallel_multiple (400/200/200/200 items). Raw generations and score files: parable-v2-artifacts under verify/bfcl/.

simple_pythonmultipleparallelparallel_multiple
Qwen3-8B base0.9530.9450.9350.900
Parable-Qwen3-8B0.9300.9000.9050.850

A 2.3 to 5.0 point trade per category: prose-trace SFT costs a little function-calling sharpness, as this card's evaluation note predicts. If you need maximum tool-calling accuracy, use the base; this variant buys the reasoning voice.

Base & license

Weights: Apache-2.0 (inherited from Qwen/Qwen3-8B). Training data: Fable-5-traces AGPL-3.0, gpt5.5-terminal MIT โ€” since those traces originate from third-party assistants, the providers' terms may apply to downstream training and distillation; if you plan to build on this model commercially, confirm your use aligns with those terms.

Get Parable

Platform
Ollamaollama run parable/qwen3-fable:8b ยท parable namespace
Ollama (family flagship, best per size)ollama run parable/fable
Hugging FaceGGUF quants, full weights, eval reports
LM Studiolms get parable/qwen3-fable ยท parable on LM Studio Hub

Citation

The recipe, evaluation methodology and failure analysis behind this model are documented in the tech report:

Aglawe, A. (2026). Agent-Trace Fine-Tuning of Small Language Models under Constrained Compute. Zenodo. doi:10.5281/zenodo.21676407

@misc{aglawe2026agenttrace,
  author    = {Aglawe, Ankit},
  title     = {Agent-Trace Fine-Tuning of Small Language Models under Constrained Compute},
  year      = {2026},
  publisher = {Zenodo},
  doi       = {10.5281/zenodo.21676407},
  url       = {https://doi.org/10.5281/zenodo.21676407}
}

Acknowledgements

Glint-Research & Roman1111111 for the open trace data ยท Qwen for the base ยท empero-ai whose Qwable recipe the Parable series follows ยท llama.cpp


Six gigabytes. Real Fable 5 reasoning. Yours, offline, right now.

ollama run hf.co/AnkitAI/Parable-Qwen3-8B-Claude-Fable-5-GGUF:Q4_K_M

More on the Parable models: ankitaglawe.com/parable

Files

FileSizeStatus
.gitattributes2 kBhuffed
Parable-Qwen3-8B-Claude-Fable-5-GGUF-F16.gguf16.4 GBhuffed
Parable-Qwen3-8B-Claude-Fable-5-GGUF-Q4_K_M.gguf5.0 GBhuffed
Parable-Qwen3-8B-Claude-Fable-5-GGUF-Q5_K_M.gguf5.9 GBhuffed
Parable-Qwen3-8B-Claude-Fable-5-GGUF-Q6_K.gguf6.7 GBhuffed
Parable-Qwen3-8B-Claude-Fable-5-GGUF-Q8_0.gguf8.7 GBhuffed
README.md9 kBhuffed
AnkitAI/Parable-Qwen3-8B-Claude-Fable-5-GGUF โ€” fast open-weights mirror ยท Huffing Face