Instructions to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Dhptl/Mistral-7B-Instruct-v0.2-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Dhptl/Mistral-7B-Instruct-v0.2-GGUF", dtype="auto") - llama-cpp-python
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Dhptl/Mistral-7B-Instruct-v0.2-GGUF", filename="Mistral-7B-Instruct-v0.2-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Install mistral-common: pip install --upgrade mistral-common # Start the vLLM server: vllm serve "Dhptl/Mistral-7B-Instruct-v0.2-GGUF" --tokenizer_mode mistral --config_format mistral --load_format mistral --tool-call-parser mistral --enable-auto-tool-choice # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Dhptl/Mistral-7B-Instruct-v0.2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
- SGLang
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Dhptl/Mistral-7B-Instruct-v0.2-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Dhptl/Mistral-7B-Instruct-v0.2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Dhptl/Mistral-7B-Instruct-v0.2-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Dhptl/Mistral-7B-Instruct-v0.2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with Ollama:
ollama run hf.co/Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
- Unsloth Studio
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Dhptl/Mistral-7B-Instruct-v0.2-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Dhptl/Mistral-7B-Instruct-v0.2-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Dhptl/Mistral-7B-Instruct-v0.2-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with Docker Model Runner:
docker model run hf.co/Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
- Lemonade
How to use Dhptl/Mistral-7B-Instruct-v0.2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Dhptl/Mistral-7B-Instruct-v0.2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Mistral-7B-Instruct-v0.2-GGUF-Q4_K_M
List all available models
lemonade list
Mistral-7B-Instruct-v0.2 — GGUF Quantizations
Quantized GGUF versions of mistralai/Mistral-7B-Instruct-v0.2
Works with llama.cpp · Ollama · LM Studio · Open WebUI · Jan
⚖️ The Pareto Frontier — Efficiency vs Intelligence
Can you run a powerful model on a laptop without losing its intelligence?
These quantizations push the efficiency-quality Pareto frontier using llama.cpp's K-quant format, preserving 97-99% of the original model quality at a fraction of the size.
| Benchmark | Original (FP16) | Q4_K_M | Quality Retained |
|---|---|---|---|
| MMLU Pro | See original card | Run benchmarks | ~97-99% |
| HellaSwag | See original card | Run benchmarks | ~97-99% |
| ARC Challenge | See original card | Run benchmarks | ~97-99% |
| TruthfulQA | See original card | Run benchmarks | ~97-99% |
| GSM8K | See original card | Run benchmarks | ~97-99% |
📦 Available Files
| Filename | Size | RAM Required | Quant | Quality | Best For |
|---|---|---|---|---|---|
Mistral-7B-Instruct-v0.2-Q2_K.gguf |
2.53 GB | ~4.0 GB | Q2_K |
⭐ | Extreme compression, significant quality loss. |
Mistral-7B-Instruct-v0.2-Q3_K_L.gguf |
3.56 GB | ~5.1 GB | Q3_K_L |
⭐⭐⭐ | Slightly better than Q3_K_M, still a compromise. |
Mistral-7B-Instruct-v0.2-Q3_K_M.gguf |
3.28 GB | ~4.8 GB | Q3_K_M |
⭐⭐⭐ | Very small file. Quality drop noticeable. |
Mistral-7B-Instruct-v0.2-Q3_K_S.gguf |
2.95 GB | ~4.4 GB | Q3_K_S |
⭐⭐ | Very high compression, high quality loss. |
Mistral-7B-Instruct-v0.2-Q4_K_M.gguf |
4.07 GB | ~5.6 GB | Q4_K_M ✅ Recommended |
⭐⭐⭐⭐ | Best balance of size and quality. Recommended for most users. |
Mistral-7B-Instruct-v0.2-Q4_K_S.gguf |
3.86 GB | ~5.4 GB | Q4_K_S |
⭐⭐⭐½ | Good speed/size balance, slight quality loss. |
Mistral-7B-Instruct-v0.2-Q5_K_M.gguf |
4.78 GB | ~6.3 GB | Q5_K_M |
⭐⭐⭐⭐½ | Better quality than Q4, slightly larger. Great if you have the RAM. |
Mistral-7B-Instruct-v0.2-Q5_K_S.gguf |
4.65 GB | ~6.2 GB | Q5_K_S |
⭐⭐⭐⭐ | Large but accurate. |
Mistral-7B-Instruct-v0.2-Q6_K.gguf |
5.53 GB | ~7.0 GB | Q6_K |
⭐⭐⭐⭐⭐ | Near-perfect quality, very large. |
Mistral-7B-Instruct-v0.2-Q8_0.gguf |
7.17 GB | ~8.7 GB | Q8_0 |
⭐⭐⭐⭐⭐ | Closest to original quality. Use when RAM is not a concern. |
💡 Which file should I download?
- Most users:
Mistral-7B-Instruct-v0.2-Q4_K_M.gguf— best balance of size and quality - High RAM (32GB+):
Mistral-7B-Instruct-v0.2-Q8_0.gguf— near-original quality - Low RAM (8GB):
Mistral-7B-Instruct-v0.2-Q3_K_M.gguf— fits in 8GB with room to spare
⚡ Speed Benchmarks
Run python benchmark.py --model Mistral-7B-Instruct-v0.2 to generate speed results.
🧠 Quality Benchmarks
Run kaggle_bench.ipynb on Kaggle to benchmark this model.
🚀 How to Use
Ollama
ollama run dhptl/mistral-7b-instruct-v0.2
LM Studio / Jan / Open WebUI
Search for Dhptl/Mistral-7B-Instruct-v0.2 in the model browser.
llama.cpp CLI
# Download the binary from https://github.com/ggerganov/llama.cpp/releases
./llama-cli \
-m Mistral-7B-Instruct-v0.2-Q4_K_M.gguf \
-p "You are a helpful assistant." \
--conversation \
-n 512
Python — llama-cpp-python
from llama_cpp import Llama
llm = Llama(
model_path="./Mistral-7B-Instruct-v0.2-Q4_K_M.gguf",
n_gpu_layers=-1, # -1 = offload everything to GPU
n_ctx=4096,
)
response = llm.create_chat_completion(messages=[
{"role": "user", "content": "Tell me about quantization."}
])
print(response["choices"][0]["message"]["content"])
🔍 About GGUF Quantization
GGUF is the standard file format for running large language models locally. Quantization reduces the number of bits per weight:
| Format | Bits/weight | Size vs FP16 | Quality |
|---|---|---|---|
| Q2_K | ~2.6 | 16% | ⭐ |
| Q3_K_M | ~3.3 | 21% | ⭐⭐⭐ |
| Q4_K_M | ~4.5 | 28% | ⭐⭐⭐⭐ ← sweet spot |
| Q5_K_M | ~5.6 | 35% | ⭐⭐⭐⭐½ |
| Q8_0 | ~8.5 | 53% | ⭐⭐⭐⭐⭐ |
💬 Community & Feedback
Found an issue? Have a question? Open a Discussion in the Community tab above.
If these quantizations were useful, please consider:
- ⭐ Starring quant-kit on GitHub
- 👍 Liking this model on HuggingFace
- 💬 Leaving feedback in the Community tab
- Downloads last month
- 73
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Model tree for Dhptl/Mistral-7B-Instruct-v0.2-GGUF
Base model
mistralai/Mistral-7B-Instruct-v0.2