Views
No views yet
group_size=64, 3.602 bits/weight average
mlp.gate (router) kept at 8-bit per layerlm_head and the vision tower / multimodal projector kept at full precision1from mlx_vlm import load, generate
2
3model, processor = load("mvid/Leanstral-2603-MLX-3bit")
4output = generate(
5 model,
6 processor,
7 "Prove that the sum of two even numbers is even in Lean 4.",
8 max_tokens=4096,
9)
10print(output)transformers/models/mistral4/convert_mistral4_weight_to_hf.py that fuses MoE experts layer-by-layer instead of holding the full state dict in RAM, keeping FP8 storage in the HF intermediate (peak memory ~14 GB).mlx_vlm convert -q --q-bits 3 --q-group-size 64 --dtype bfloat16 with a per-tensor mx.eval + mx.synchronize save patch to avoid macOS Metal command-buffer watchdog timeouts on the 119B model.