Downloads · 30 days
28
5% of all-time downloads
majentik/Leanstral-RotorQuant-MLX-8bit
Leanstral-RotorQuant-MLX-8bit is a text generation model from majentik. Use it when you need the model to write or continue text. It is set up for mlx. The card lists the license as apache-2.0.
[!TIP] KV-cache quantization without any fork (recommended, 2026): upstream llama.cpp/Ollama now cover this natively — use -ctk q80 -ctv q80 (~half KV memory, negligible quality loss: perplexity +0.002–0.05) or -ctk q…
Downloads · 30 days
28
5% of all-time downloads
All-time downloads
511
Public
Parameters
119B
127 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors127 GB · 100%
How the weights are stored.
U32119B · 100%
From the Hugging Face model README
<!-- kv-upstream-note -->[!TIP] KV-cache quantization without any fork (recommended, 2026): upstream llama.cpp/Ollama now cover this natively — use
-ctk q8_0 -ctv q8_0(~half KV memory, negligible quality loss: perplexity +0.002–0.05) or-ctk q4_0 -ctv q4_0(~quarter memory, ≈7.6% perplexity increase). In Ollama:OLLAMA_KV_CACHE_TYPE=q8_0withOLLAMA_FLASH_ATTENTION=1. Keep K and V types symmetric to stay on the fast fused Flash-Attention path. Since April 2026, mainline llama.cpp also applies Hadamard rotation to KV activations (PR #21038), which greatly improves low-bit KV quality (opt-out:LLAMA_ATTN_ROT_DISABLE=1).The RotorQuant/TurboQuant fork flow below is experimental/legacy: the TurboQuant llama.cpp PR was closed without merging (June 2026) and the fork is unmaintained relative to mainline. It is NOT required to use this model.
8-bit MLX weight-quantized Leanstral-2603 with RotorQuant KV-cache quantization for Lean 4 formal proof generation on Apple Silicon.
Leanstral is the first open-source AI agent purpose-built for Lean 4 formal proofs -- generating both executable code and machine-checkable mathematical proofs. This variant combines dual compression: 8-bit MLX weight quantization for reduced model size plus the legacy RotorQuant KV-cache fork (superseded by upstream llama.cpp KV options) for efficient long-context inference with KV-cache handling.
Approximate model size: ~120 GB
This repository provides a dual-compressed configuration: MLX 8-bit weight quantization reduces the static memory footprint, while RotorQuant compresses the KV cache at runtime with superior throughput. Together, they enable running Leanstral on high-memory Apple Silicon machines.
| Spec | Value |
|---|---|
| Base model | mistralai/Leanstral-2603 |
| Architecture | Mistral MoE (~119B parameters, 7 consolidated shards) |
| Weight quantization | 8-bit (MLX) |
| KV-cache quantization | RotorQuant |
| Weight memory | ~120 GB |
| Runtime | MLX (Apple Silicon) |
| License | Apache 2.0 |
| Use case | Lean 4 formal verification, theorem proving, mathematical proofs |
from mlx_lm import load, generate
model, tokenizer = load("majentik/Leanstral-RotorQuant-MLX-8bit")
prompt = "Prove that for all natural numbers n, n + 0 = n in Lean 4:"
response = generate(
model,
tokenizer,
prompt=prompt,
max_tokens=512,
)
print(response)
RotorQuant and TurboQuant are this project's release labels, not distinct
quantization algorithms — for any given tier, both brand repos carry
byte-identical weights produced with the standard MLX / llama.cpp quantizers.
No brand-specific speedup is claimed or measured. The KV-cache fork these
labels originally referred to is legacy; for KV-cache memory savings use the
upstream options described above (-ctk/-ctv q8_0, OLLAMA_KV_CACHE_TYPE).
| Method | Prefill Speed | Decode Speed | Memory Savings | Reference |
|---|---|---|---|---|
| TurboQuant | Baseline | Baseline | High | arXiv: 2504.19874 |
| Component | Estimate |
|---|---|
| Model weights (8-bit) | ~120 GB |
| KV-cache | Reduced via RotorQuant |
| Recommended hardware | Mac Studio M2/M3/M4 Ultra (192 GB+) or Mac Pro |
Leanstral excels at:
| Bits | Approx size | Use case | Recommendation |
|---|---|---|---|
| 2-bit | ~31 GB | Aggressive quantization | Very low-RAM Macs |
| 3-bit | ~43 GB | Lossy but small | Low-RAM Macs |
| 4-bit | ~50 GB | Balanced default | Recommended for most Macs |
| 5-bit | ~60 GB | Higher fidelity | Quality-sensitive |
| 6-bit | ~71 GB | Approaching FP16 quality | High-fidelity |
| 8-bit | ~90 GB | Near-lossless reference | Fidelity-critical work |
(Current variant — 8bit — is bolded.)
(Showing 8 sibling variants under majentik/leanstral-*. The current variant — RotorQuant-MLX-8bit — is bolded.)
| Variant | Runtime | Approx size | Use case |
|---|---|---|---|
| RotorQuant-MLX-8bit | mlx-lm | card-only | Apple Silicon reference |
| TurboQuant-MLX-2bit | mlx-lm | card-only | Apple Silicon, smallest |