JANG_6M build of
LiquidAI/LFM2.5-2.6B — LiquidAI's
always-thinking 2.6B agentic model (16 languages, 128K context), quantized for Apple Silicon with 6-bit affine FFN weights, 8-bit token-mixing operators, and
learned codes: activation-aware AWQ folds plus GPTQ codes-only QAT on every FFN tensor. This is the quality build of the pair — smaller
and more faithful than MXFP8.
Two 768-token held-out texts: general/encyclopedic and agentic/code+thinking (the workload LiquidAI built this model for). KL is mean full-vocabulary KL(bf16 ‖ quant).
On general text the 6-bit builds are within sample noise of each other; on the agentic/thinking distribution this build's KL is 2.5× lower than the vendor's 6-bit RTN export — that is what the QAT/AWQ calibration is aimed at. And as on every model we have measured, 6-bit affine beats MXFP8 on fidelity while being smaller: e4m3 elements carry ~3 mantissa bits, so "8-bit MX" is not strictly better than 6-bit affine with a per-group scale and bias.
Standard MLX safetensors with a per-module
{bits, group_size, mode} map in
config.json[quantization]. Loads with
stock mlx_lm >= 0.31 — no custom code, no
trust_remote_code. Runs in
Osaurus and vMLX-compatible runtimes (
lfm2 family). Fits in 8 GB of unified memory.
1from mlx_lm import load, generate
2
3model, tokenizer = load("OsaurusAI/LFM2.5-2.6B-JANG_6M")
4prompt = tokenizer.apply_chat_template(
5 [{"role": "user", "content": "Which number is bigger, 9.11 or 9.8?"}],
6 add_generation_prompt=True,
7)
8print(generate(model, tokenizer, prompt=prompt, max_tokens=1024))
Quantized and verified by
Jinho Jang (
eric@osaurus.ai). Base model © Liquid AI, released under the
LFM 1.0 license.