Views
No views yet
1import mlx.core as mx
2from mlx_lm import load, generate
3
4model, tokenizer = load("majentik/Qwen3.6-35B-A3B-TurboQuant-MLX-NVFP4")
5
6prompt = "Give me a short introduction to Mixture-of-Experts models."
7response = generate(model, tokenizer, prompt=prompt, max_tokens=512)
8print(response)[!IMPORTANT] Text-only extraction. This repo contains only the quantized language tower of Qwen3.6-35B-A3B. The upstream vision tower (333 tensors) and MTP head are not included, so image/video input does not work andmlx_vlm.load(...)fails with aMissing ... parameterserror (the vision tower it expects is absent from the checkpoint). Load it withmlx_lm(recent version withqwen3_5_moesupport) as shown above. For image/video input, use the upstream BF16 model Qwen/Qwen3.6-35B-A3B on a runtime that supports it.
| Device | VRAM | Recommendation |
|---|---|---|
| Apple M4 Max 128 GB | ~21 GB | recommended — headroom for long context |
| Apple M3 Max 64 GB | ~21 GB | fits comfortably |
| Apple M2 Max 32 GB | ~21 GB | tight — short context only |
1# dequantize from the rotor/turbo MLX-8bit source, then re-quantize
2python -c "from mlx_lm import convert; convert(hf_path=\"bf16\", mlx_path=\"out-nvfp4\", quantize=True, q_bits=4, q_group_size=16, q_mode=\"nvfp4\", trust_remote_code=True)"919836a.| Benchmark | Score |
|---|---|
| arc_easy_acc | 0.4900 |
| hellaswag_acc | 0.4900 |
none (nvfp4 is calibration-free; rotor/turbo conditioning inherited from source)2026-04-21T06:26:36.131649+00:00huggingface_hub: 1.11.0mlx: 0.31.1mlx-lm: 0.31.2apache-2.0. Upstream license of the base model applies.