Views
No views yet
Vision capabilities are NOT working in this MLX conversion. The model runs text-only inference successfully, but the Pixtral vision encoder does not properly process images. This appears to be a known issue with mlx-vlm's Mistral3/Pixtral support. Use this model for text-only tasks until mlx-vlm fixes Mistral3 vision support.
| Property | Value |
|---|---|
| Original Model | mistralai/Ministral-3-14B-Reasoning-2512 |
| Parameters | 14B (13.5B LLM + 0.4B Vision) |
| Quantization | 4-bit (group size 64) |
| Size | ~7.9 GB |
| Framework | MLX |
| Context Length | 256K tokens |
| Vision Support | Not working (see above) |
[THINK] tagspip install mlx-vlm1from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3
4# Load model
5model, processor = load("hunterbown/Ministral-3-14B-Reasoning-2512-MLX-4bit")
6
7# Text inference with reasoning
8prompt = apply_chat_template(
9 processor,
10 config=model.config,
11 prompt="Solve this step by step: What is 15% of 240?"
12)
13output = generate(model, processor, prompt, max_tokens=500)
14print(output.text)1python -m mlx_vlm.convert \
2 --hf-path mistralai/Ministral-3-14B-Reasoning-2512 \
3 --mlx-path ./ministral-3-14b-reasoning-4bit \
4 -q --q-bits 4 --q-group-size 64