GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

Lufel6848/Ministral-3-8B-Reasoning-2512-GGUF overview

Ministral 3 8B Reasoning 2512 GGUF Community made GGUF conversions and quantizations of Ministral 3 8B Reasoning 2512 , intended for local text inference with …

ggufmistralministralministral-3reasoningllama.cppquantizationlocal-aienfresdeitptnlzhjakoarbase_model:mistralai/Ministral-3-8B-Reasoning-2512base_model:quantized:mistralai/Ministral-3-8B-Reasoning-2512license:apache-2.0endpoints_compatibleregion:us

Runs locally from ~4.84 GB disk (8 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
Author

Repository Files & Downloads

5 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Ministral-3-8B-Reasoning-2512-BF16.ggufGGUFBF1615.82 GBDownload
Ministral-3-8B-Reasoning-2512-Q4_K_M.ggufGGUFQ4_K_M4.84 GBDownload
Ministral-3-8B-Reasoning-2512-Q5_K_M.ggufGGUFQ5_K_M5.64 GBDownload
Ministral-3-8B-Reasoning-2512-Q6_K.ggufGGUFQ6_K6.49 GBDownload
Ministral-3-8B-Reasoning-2512-Q8_0.ggufGGUFQ8_08.41 GBDownload

Model Details

Model IDLufel6848/Ministral-3-8B-Reasoning-2512-GGUF
AuthorLufel6848
Pipeline
Licenseapache-2.0
Base modelmistralai/Ministral-3-8B-Reasoning-2512
Last modified2026-08-14T21:29:38.000Z

Model README

---

license: apache-2.0

base_model: mistralai/Ministral-3-8B-Reasoning-2512

language:

  • en
  • fr
  • es
  • de
  • it
  • pt
  • nl
  • zh
  • ja
  • ko
  • ar

tags:

  • mistral
  • ministral
  • ministral-3
  • reasoning
  • gguf
  • llama.cpp
  • quantization
  • local-ai

---

Ministral-3-8B-Reasoning-2512 GGUF

Community-made GGUF conversions and quantizations of Ministral-3-8B-Reasoning-2512, intended for local text inference with GGUF-compatible software.

The original model was converted from its Hugging Face / SafeTensors distribution to GGUF using tools provided by llama.cpp.

> This is an unofficial community conversion.

>

> The Ministral-3-8B-Reasoning-2512 model, architecture, and original weights were developed and released by Mistral AI. This repository provides converted and quantized GGUF files derived from the original model.

Original Model

  • Model: mistralai/Ministral-3-8B-Reasoning-2512
  • Developer: Mistral AI
  • Original format: SafeTensors
  • License: Apache License 2.0
  • Original model: https://huggingface.co/mistralai/Ministral-3-8B-Reasoning-2512

Refer to the original model repository for the authoritative model card, capabilities, limitations, recommended settings, usage information, and license terms.

Ministral-3-8B-Reasoning-2512 is the reasoning post-trained variant of Ministral 3 8B, designed for tasks involving reasoning, mathematics, coding, STEM, and other workloads that benefit from multi-step reasoning.

Text-Only GGUF Conversion

The original Ministral-3-8B-Reasoning-2512 model includes native vision capabilities.

However, this repository provides only the GGUF conversion and quantizations of the language model. A multimodal projector (mmproj) is not included.

As a result, the GGUF files distributed in this repository are intended for text-only inference.

The absence of an mmproj file does not affect normal text generation, reasoning, coding, or other text-based use cases.

Users requiring the original model's vision capabilities should refer to the upstream model and compatible multimodal inference implementations.

Available GGUF Files

This repository provides the original BF16 GGUF conversion alongside several quantized variants:

| Format / Quantization | Description |

|---|---|

| BF16 | GGUF conversion retaining BF16 weight precision. Largest file and highest memory requirement among the provided variants. |

| Q4_K_M | Lower storage and memory requirements. Suitable as a general-purpose local inference option. |

| Q5_K_M | Balanced option with additional weight precision compared with Q4_K_M. |

| Q6_K | Higher-precision quantization for systems with more available memory. |

| Q8_0 | High-precision quantization with substantially larger memory and storage requirements. |

Actual memory consumption may be higher than the GGUF file size and depends on factors such as context length, KV cache configuration, inference backend, GPU offloading, and runtime settings.

Conversion Pipeline

The files in this repository were produced using a workflow based on llama.cpp:

Ministral-3-8B-Reasoning-2512
              │
              │ SafeTensors
              ▼
     convert_hf_to_gguf.py
              │
              ▼
          BF16 GGUF
              │
              │ llama-quantize
              ▼
┌────────┬────────┬───────┬──────┐
│Q4_K_M  │Q5_K_M  │ Q6_K  │ Q8_0 │
└────────┴────────┴───────┴──────┘

No additional training or fine-tuning is performed as part of this conversion process.

Quantization changes the numerical representation of the model weights to reduce storage and memory requirements and may affect model quality.

The multimodal projector and vision components are not included in the conversion files distributed by this repository.

Usage

These GGUF files are intended for text inference using applications and inference engines with compatible GGUF support, particularly llama.cpp and software built around it.

Example with llama.cpp:

llama-cli \
  -m Ministral-3-8B-Reasoning-2512-Q5_K_M.gguf \
  -p "Solve this problem step by step: If x² - 5x + 6 = 0, what are the possible values of x?"

Runtime parameters should be adjusted according to your hardware, available memory, desired context length, and inference backend.

Because this is a reasoning-oriented model, generation behavior may also depend on the chat template, system prompt, and reasoning support implemented by the inference runtime.

Vision Support

The upstream Ministral-3-8B-Reasoning-2512 model is multimodal and includes vision capabilities.

These capabilities are not provided by the GGUF files in this repository, as no multimodal projector (mmproj) is included.

The files distributed here should therefore be treated as text-only GGUF variants.

Compatibility

GGUF compatibility depends on the version of llama.cpp and its support for the underlying Mistral 3 language model architecture.

Because both llama.cpp and GGUF continue to evolve, older inference engines may not correctly load files produced by newer versions.

If you encounter GGUF compatibility problems, first test with a recent version of llama.cpp or your preferred GGUF-compatible runtime.

This repository does not provide or guarantee multimodal GGUF compatibility.

Reproducibility

The conversion process follows the Hugging Face / SafeTensors → GGUF workflow provided by llama.cpp.

The general process consists of:

  1. obtaining the original mistralai/Ministral-3-8B-Reasoning-2512 SafeTensors model;
  2. converting the language model to GGUF using convert_hf_to_gguf.py;
  3. retaining the resulting BF16 GGUF;
  4. quantizing the BF16 GGUF using llama-quantize;
  5. producing the Q4_K_M, Q5_K_M, Q6_K, and Q8_0 variants.

This workflow covers the language-model GGUF files distributed in this repository and does not include generation or distribution of a multimodal projector.

Conversion and quantization behavior may vary between llama.cpp revisions as model architecture support and GGUF tooling evolve.

Credits

Mistral AI

The original Ministral-3-8B-Reasoning-2512 model, architecture, and model weights were developed and released by Mistral AI.

This repository would not exist without their work and release of the original model.

  • Mistral AI: https://mistral.ai/
  • Original model: https://huggingface.co/mistralai/Ministral-3-8B-Reasoning-2512

All credit for the original model belongs to its respective authors and contributors.

llama.cpp

GGUF conversion and quantization are performed using tools from the open-source llama.cpp project.

This workflow relies on tooling including:

  • convert_hf_to_gguf.py
  • llama-quantize
  • GGUF infrastructure provided by the project

Project:

https://github.com/ggml-org/llama.cpp

Credit belongs to the llama.cpp maintainers and contributors for the conversion, quantization, GGUF, and local inference tooling used by this workflow.

License

The original Ministral-3-8B-Reasoning-2512 model is distributed under the Apache License 2.0.

These files are converted and quantized derivatives of the original model weights and retain the applicable licensing terms of the original model.

Please review the original Ministral-3-8B-Reasoning-2512 repository and its license before using or redistributing these files.

Disclaimer

This repository is an unofficial community conversion and is not affiliated with, endorsed by, or maintained by Mistral AI, Vast.ai, or the llama.cpp project.

Vast.ai was used as the environment in which the conversion workflow was tested. Its use does not imply affiliation, endorsement, or a technical requirement to use Vast.ai.

The upstream Ministral-3-8B-Reasoning-2512 model includes multimodal capabilities, but this repository distributes only text-oriented GGUF model files and does not include the multimodal projector required for vision inference.

The purpose of this repository is to provide GGUF variants of the original openly released model for local text inference while documenting and crediting the upstream projects used to create them.

Run Lufel6848/Ministral-3-8B-Reasoning-2512-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models