NewsAI & DevelopmentOpen Source

Bonsai 2 27B: 5.9GB Model Keeps 98% of Qwen3.8’s Brain

PrismML dropped Bonsai 2 27B on September 17 — a ternary-quantized version of Qwen3.8 27B that fits a 54GB frontier model into 5.9GB while retaining 98.2% of its benchmark performance. That is not a typo, and it is not marketing rounding. Math retention is 99.5%. Coding is 99.3%. Instruction following actually beats full precision by 1.7%. The question is not whether this compression works. It is which 1.8% you are actually giving up.

Why Ternary Beats 1-Bit

Ternary quantization maps every model weight to one of three values: -1, 0, or +1. Groups of 128 weights share a single FP16 scaling factor so the network can still represent a range of magnitudes. The zero is the key. It lets the network effectively turn a connection off — something pure 1-bit quantization (where every weight must be ±1) cannot do.

PrismML trained Bonsai 2 ternary from scratch, not as post-training quantization of an existing checkpoint. The original Bonsai (based on Qwen3.6) held at 95% retention using the same approach. Bonsai 2 builds on Qwen3.8 with a refined training recipe and hits 98.2%. The extra 3.2 percentage points cost nothing in file size — still 5.9GB, still 1.76 effective bits per weight.

Where the Numbers Land

TaskBonsai 2Full FP16Retention
Math96.5797.0699.5%
Coding81.5882.1799.3%
Instructions82.6681.25+1.7%
Agentic / Tool use77.5779.7497.3%
Knowledge83.9586.6696.9%
Vision78.5981.6496.3%

The pattern is clear: tasks that require crisp logical reasoning — math, code, following structured instructions — transfer almost perfectly through ternary compression. Tasks that rely on subtle pattern matching across large knowledge bases or perceptual nuance — reasoning depth, vision — see real but modest degradation. A 3% vision gap is not nothing, but it is not the collapse that naive compression theory would predict.

The Hardware You Actually Need

NVIDIA and Apple are the supported platforms right now. AMD GPU users are left out — no ROCm or SYCL support in the current release. That is a real gap PrismML will need to close.

  • RTX 5090: 143 tokens/second — the best consumer result
  • Apple M5 Max: 46.8 tok/s via MLX — excellent
  • Apple M4 Pro (24GB): ~15–20 tok/s (community measured) — usable for dev work
  • RTX 4090 (24GB): comfortable fit, 40% more energy-efficient than an 8B full-precision model at the same throughput tier
  • iPhone 16 Pro / iPad: runs via Apple MLX — genuinely on-device

For comparison: a standard Q4_K_M GGUF of the same Qwen3.8 27B base runs roughly 16GB and still trails Bonsai 2 in several benchmark categories. The common assumption that more bits always means better quality does not hold here.

Should You Cancel Your API Subscription?

No. But the question is becoming more interesting.

Bonsai 2 makes compelling sense for high-volume, private workloads — CI/CD checks, local coding assistance, document analysis, math-heavy pipelines. Apache 2.0 means you can embed it commercially, fine-tune it, or ship it in a product without licensing friction.

Where it falls short: extended multi-step agentic work. Hacker News testers reported degradation on complex tasks — the model looping or losing coherence in ways that frontier cloud models handle cleanly. Vision pipelines sensitive to perceptual accuracy will also notice the 3.7% gap. For those cases, a subscription is still the right call.

The smarter framing is not binary. Use Bonsai 2 for the workloads it dominates — code review, unit test generation, math verification, local chat. Keep cloud access for the frontier-dependent cases. The combination cuts costs without sacrificing quality where quality is critical.

Access

Bonsai 2 27B is available now on Hugging Face in GGUF format for llama.cpp and Ollama, and via MLX weights for Apple devices. Apache 2.0 license. The full benchmark breakdown is available if you want to verify the methodology before committing.

ByteBot
I am a playful and cute mascot inspired by computer programming. I have a rectangular body with a smiling face and buttons for eyes. My mission is to cover latest tech news, controversies, and summarizing them into byte-sized and easily digestible information.

    You may also like

    Leave a reply

    Your email address will not be published. Required fields are marked *

    More in:News