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

Dzluck/Ministral-3-14B-Instruct-2512-TextOnly-GGUF overview

This is quantized version of Aratako/Ministral 3 14B Instruct 2512 BF16 TextOnly https://huggingface.co/Aratako/Ministral 3 14B Instruct 2512 BF16 TextOnly cre…

ggufbase_model:mistralai/Ministral-3-14B-Instruct-2512-BF16base_model:quantized:mistralai/Ministral-3-14B-Instruct-2512-BF16license:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~7.67 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-14B-Instruct-2512-BF16-TextOnly-F16.ggufGGUFBF1625.17 GBDownload
Ministral-3-14B-Instruct-2512-TextOnly-Q4_K_M.ggufGGUFQ4_K_M7.67 GBDownload
Ministral-3-14B-Instruct-2512-TextOnly-Q5_K_M.ggufGGUFQ5_K_M8.96 GBDownload
Ministral-3-14B-Instruct-2512-TextOnly-Q6_K.ggufGGUFQ6_K10.33 GBDownload
Ministral-3-14B-Instruct-2512-TextOnly-Q8_0.ggufGGUFQ8_013.37 GBDownload

Model Details

Model IDDzluck/Ministral-3-14B-Instruct-2512-TextOnly-GGUF
AuthorDzluck
Pipeline
Licenseapache-2.0
Base modelmistralai/Ministral-3-14B-Instruct-2512-BF16
Last modified2026-08-08T05:53:59.000Z

Model README

---

license: apache-2.0

base_model:

  • mistralai/Ministral-3-14B-Instruct-2512-BF16

---

This is quantized version of Aratako/Ministral-3-14B-Instruct-2512-BF16-TextOnly created using llama.cpp

This model is the text-only component extracted from the Vision-Language Model mistralai/Ministral-3-14B-Instruct-2512-BF16.

Usage

You can load this model using AutoModelForCausalLM as shown below:

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "Aratako/Ministral-3-14B-Instruct-2512-TextOnly-BF16"

tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    device_map="cuda",
)

messages = [
    {
        "role": "user",
        "content": "Tell me a joke about computers.",
    },
]

input_ids = tokenizer.apply_chat_template(messages, return_tensors="pt").to("cuda")

output = model.generate(
    input_ids, max_new_tokens=512, pad_token_id=tokenizer.eos_token_id
)

decoded_output = tokenizer.decode(
    output[0][len(input_ids[0]) :], skip_special_tokens=True
)
print(decoded_output)

Original Model Information

This is a weight extraction of the original VLM. For detailed benchmarks, licensing details, and architectural information, please refer to the original model card: mistralai/Ministral-3-14B-Instruct-2512-BF16

Run Dzluck/Ministral-3-14B-Instruct-2512-TextOnly-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