CoolFace
Modelpublic

AnkitAI/Parable-Qwen3-4B-Claude-Fable-5-MLX-4bit

sourceHugging Faceapache-2.0updated 3d agoView on Hugging Face
1likes218downloads
Model Card

Parable-Qwen3-4B-Claude-Fable-5-MLX-4bit

<picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ankit-aglawe/parable-assets/main/parableheaderdark.png"> <img alt="Parable" src="https://raw.githubusercontent.com/ankit-aglawe/parable-assets/main/parable_header.png"> </picture>

Apple Silicon build of Parable-Qwen3-4B: 2.1 GB at 4.501 bits per weight, running natively on MLX with no llama.cpp in the way.

A 4-bit MLX quantisation of AnkitAI/Parable-Qwen3-4B-Claude-Fable-5, a Qwen3-4B fine-tune trained on real multi-step agent sessions: planning, tool use, and <think> reasoning captured from actual Claude Fable 5 and GPT-5.5 agent work, not synthetic Q&A. Fits comfortably on any M-series Mac.

Usage

bash
pip install mlx-lm
bash
mlx_lm.generate --model AnkitAI/Parable-Qwen3-4B-Claude-Fable-5-MLX-4bit \
  --prompt "Write a Python function that retries an HTTP request with exponential backoff."

Or from Python:

python
from mlx_lm import load, generate

model, tokenizer = load("AnkitAI/Parable-Qwen3-4B-Claude-Fable-5-MLX-4bit")
messages = [{"role": "user", "content": "Write a Python function that retries an HTTP request with exponential backoff."}]
prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True)
print(generate(model, tokenizer, prompt=prompt, max_tokens=512))

Recipe

v3.1: LoRA on agent traces with a replay mix to limit forgetting, completion-only loss so the model trains on answers rather than prompts, two seeds souped, then merged into the base at scale 0.6 to bound drift from the original weights.

Measured on the full-precision 4B, base against tuned, in one session on one harness:

basev3.1
HumanEval+0.6160.683
MBPP+0.6030.638

Those are the full-precision numbers. Quantising to 4 bits costs accuracy that this table does not measure, so treat them as the ceiling for this build rather than a claim about it.

Other formats

formatrepofor
GGUFParable-Qwen3-4B-Claude-Fable-5-GGUFllama.cpp, LM Studio, Ollama
MLX 8-bitParable-Qwen3-4B-Claude-Fable-5-MLX-8bitApple Silicon, closer to source
safetensorsParable-Qwen3-4B-Claude-Fable-5transformers

Apache-2.0, inherited from the base model.

Support the Project

If this model is useful in your work, you can support independent research:

<p align="left"> <a href="https://www.buymeacoffee.com/AnkitAI" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me a Coffee" height="60" width="217" /></a> </p>