33 Downloads Updated 4 days ago
ollama run mvincig11/ministral-3-3b-mlx
A compact Q4_K_M quantization of Mistral AI’s Ministral 3 3B Instruct 2512, packaged for fast local inference with Ollama.
ollama run mvincig11/ministral-3-3b-mlx
curl http://localhost:11434/api/chat -d '{
"model": "mvincig11/ministral-3-3b-mlx",
"messages": [
{"role": "user", "content": "Explain 4-bit quantization briefly."}
],
"stream": false
}'
The same four fixed prompts were run with identical greedy decoding on an Apple Mac mini M4 with 16 GB unified memory. Both the MLX BF16 baseline and the MLX 4-bit model passed all four functional checks.

The measured 4-bit run reduced mean end-to-end latency by 37.1% and increased output throughput by 1.92x relative to the measured BF16 baseline.
Results depend on hardware, prompt length, cache state, OS, and runtime version. This is a runtime and functional comparison, not a general quality benchmark, and it does not establish accuracy parity with BF16.
The complete reproducible workflow is available in the public repository:
The workflow starts from the official Mistral AI BF16 Safetensors checkpoint, converts it to MLX, applies 4-bit affine quantization with group size 64, validates the exported checkpoint, and runs deterministic functional and runtime checks. No fine-tuning or additional training data were used.
temperature 0
num_ctx 8192
Increase the context only when needed because KV-cache memory grows with sequence length.
This derivative follows the Apache 2.0 license and usage terms of the upstream Mistral AI model. Review the upstream model card before production or commercial use. This is an independent community conversion.