Views
No views yet
tq3a-tq2e-g32 variant (manjunathshiva/Nemotron-3-Super-120B-A12B-tq3a-tq2e-g32) which keeps attention at 3-bit but pushes experts to 2-bit and fits in ~40.8 GB peak memory.MEMEMEM*EMEMEMEM*… (M = Mamba, E = MoE, * = Attention)moe_latent_size = 1024group_size=64iogpu.wired_limit_mb raised on a 64 GB Maciogpu.wired_limit_mb raised), or 96/128 GB Macs comfortablyturboquant-mlx-full >= 0.15.1):turboquant-plan --model manjunathshiva/Nemotron-3-Super-120B-A12B-tq3Model
weights (exact) 53.2 GB
experts 48.8 GB (streamable)
resident 4.4 GB
KV cache 8.0 KB/token (Mamba hybrid: 8/88 attention layers)
Verdict: <resident | needs a wired-limit raise | streaming>
Recommended: <the exact flags for your Mac>--wired-gb / --ram-gb are for:1turboquant-plan --model manjunathshiva/Nemotron-3-Super-120B-A12B-tq3 \
2 --wired-gb 10.5 --ram-gb 16 --context 8192turboquant-doctor runs the same projection plus a readiness check; both take --json. The projection is calibrated against real measurements on a 16 GB Mac mini rather than estimated from theory — on the 9.4 GB ternary 35B it predicts a 10.44 GB peak where that machine measures 10.42.pip install "turboquant-mlx-full>=0.2.0" "mlx-lm>=0.31.3"sudo sysctl iogpu.wired_limit_mb=573441hf download manjunathshiva/Nemotron-3-Super-120B-A12B-tq3 \
2 --local-dir ~/models/nemotron-3-super-120b-tq3<think> reasoning trace before its final answer, and the chat template primes EOS as the top-1 logit at the start of the assistant turn. Use --min-tokens 50 to ensure generation actually starts. The small repetition penalty prevents long-form generation from collapsing into degenerate tail loops past ~1500 tokens.1turboquant-generate \
2 --model ~/models/nemotron-3-super-120b-tq3 \
3 --prompt "Why is the sky blue? Explain in detail." \
4 --max-tokens 4096 --min-tokens 50 \
5 --temp 0.7 --rep-penalty 1.04 --rep-ctx 256K3 compounds the noise and breaks long-form output. The 128-token fp16 sink protects attention sinks; the cache builder is hybrid-aware and leaves Mamba/conv-layer caches untouched.1turboquant-generate \
2 --model ~/models/nemotron-3-super-120b-tq3 \
3 --prompt "Why is the sky blue? Explain in detail." \
4 --max-tokens 4096 --min-tokens 50 \
5 --temp 0.7 --rep-penalty 1.04 --rep-ctx 256 \
6 --kv-k-bits 8 --kv-v-bits 3 --kv-min-tokens 128--rep-penalty. For numeric/math prompts, omit it:1turboquant-generate \
2 --model ~/models/nemotron-3-super-120b-tq3 \
3 --prompt "A train leaves Boston at 9:00 AM going 60 mph..." \
4 --max-tokens 2048 --min-tokens 50 \
5 --temp 0.7