Views
No views yet
| Quantization | File Size | Use Case | Quality |
|---|---|---|---|
| Q8_0 | ~25 GB | Highest quality | 99%+ of original |
| Q5_K_M | ~16 GB | Best balance (RECOMMENDED) | 98%+ of original |
1# Download model (requires HF authentication for private repo)
2huggingface-cli login
3huggingface-cli download rihuwa/Reina_Magitral_gguf magistral-small-2509-text-only-Q5_K_M.gguf --local-dir ./models
4
5# Run inference
6./llama-cli -m ./models/magistral-small-2509-text-only-Q5_K_M.gguf -p "Your prompt here" -n 256 \
7 --temp 0.7 --top-p 0.951# Download the GGUF file first
2huggingface-cli login
3huggingface-cli download rihuwa/Reina_Magitral_gguf magistral-small-2509-text-only-Q5_K_M.gguf --local-dir ./models
4
5# Create Modelfile (the template uses Mistral v7 format)
6cat > Modelfile << 'EOF'
7FROM ./models/magistral-small-2509-text-only-Q5_K_M.gguf
8
9PARAMETER temperature 0.7
10PARAMETER top_p 0.95
11PARAMETER num_ctx 8192
12EOF
13
14# Create and run model
15ollama create reina-magistral -f Modelfile
16ollama run reina-magistral[THINK] and [/THINK] tags for reasoning