Views
No views yet
Note on Thinking/Reasoning Display: The model thinks correctly (generates [THINK]...[/THINK] tags internally), but LM Studio 0.4.17 does not display thinking in a collapsible reasoning section. LM Studio only natively supports DeepSeek-styletags for reasoning display. The model works perfectly via llama-server with --reasoning on flag. This is a known limitation of LM Studio for the Ministral reasoning format.
| File | Size | Description |
|---|---|---|
ministral-3-14b-reasoning-2512-mxfp4.gguf | ~6.9 GB | MXFP4 quantized model weights |
mmproj-ministral-3-14b-reasoning-2512-f16.gguf | ~820 MB | Vision projector (F16, unquantized) |
1# Server mode with OpenAI-compatible API
2llama-server \
3 -m ministral-3-14b-reasoning-2512-mxfp4.gguf \
4 --mmproj mmproj-ministral-3-14b-reasoning-2512-f16.gguf \
5 -ngl 99 \
6 --host 0.0.0.0 \
7 --port 8080
8
9# Direct inference
10llama-cli \
11 -m ministral-3-14b-reasoning-2512-mxfp4.gguf \
12 --mmproj mmproj-ministral-3-14b-reasoning-2512-f16.gguf \
13 -ngl 99 \
14 -p "Explain the chain of thought for solving: what is 15 * 23?"| Metric | Value |
|---|---|
| Source format | BF16 GGUF (Mistral official) |
| Output format | MXFP4 |
| Approximate BPW | ~4.37 |
| Quantized with | llama.cpp build 537 |