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…
Runs locally from ~7.67 GB disk (8 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| Ministral-3-14B-Instruct-2512-BF16-TextOnly-F16.gguf | GGUF | BF16 | 25.17 GB | Download |
| Ministral-3-14B-Instruct-2512-TextOnly-Q4_K_M.gguf | GGUF | Q4_K_M | 7.67 GB | Download |
| Ministral-3-14B-Instruct-2512-TextOnly-Q5_K_M.gguf | GGUF | Q5_K_M | 8.96 GB | Download |
| Ministral-3-14B-Instruct-2512-TextOnly-Q6_K.gguf | GGUF | Q6_K | 10.33 GB | Download |
| Ministral-3-14B-Instruct-2512-TextOnly-Q8_0.gguf | GGUF | Q8_0 | 13.37 GB | Download |
Model Details
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.
Source: Hugging Face · Compare models