Instructions to use ikawrakow/mistral-instruct-7b-quantized-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use ikawrakow/mistral-instruct-7b-quantized-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="ikawrakow/mistral-instruct-7b-quantized-gguf", filename="mistral-instruct-7b-q3k-medium.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ikawrakow/mistral-instruct-7b-quantized-gguf with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf ikawrakow/mistral-instruct-7b-quantized-gguf # Run inference directly in the terminal: llama-cli -hf ikawrakow/mistral-instruct-7b-quantized-gguf
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf ikawrakow/mistral-instruct-7b-quantized-gguf # Run inference directly in the terminal: llama-cli -hf ikawrakow/mistral-instruct-7b-quantized-gguf
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 ikawrakow/mistral-instruct-7b-quantized-gguf # Run inference directly in the terminal: ./llama-cli -hf ikawrakow/mistral-instruct-7b-quantized-gguf
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 ikawrakow/mistral-instruct-7b-quantized-gguf # Run inference directly in the terminal: ./build/bin/llama-cli -hf ikawrakow/mistral-instruct-7b-quantized-gguf
Use Docker
docker model run hf.co/ikawrakow/mistral-instruct-7b-quantized-gguf
- LM Studio
- Jan
- Ollama
How to use ikawrakow/mistral-instruct-7b-quantized-gguf with Ollama:
ollama run hf.co/ikawrakow/mistral-instruct-7b-quantized-gguf
- Unsloth Studio
How to use ikawrakow/mistral-instruct-7b-quantized-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 ikawrakow/mistral-instruct-7b-quantized-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 ikawrakow/mistral-instruct-7b-quantized-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ikawrakow/mistral-instruct-7b-quantized-gguf to start chatting
- Atomic Chat new
- Docker Model Runner
How to use ikawrakow/mistral-instruct-7b-quantized-gguf with Docker Model Runner:
docker model run hf.co/ikawrakow/mistral-instruct-7b-quantized-gguf
- Lemonade
How to use ikawrakow/mistral-instruct-7b-quantized-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ikawrakow/mistral-instruct-7b-quantized-gguf
Run and chat with the model
lemonade run user.mistral-instruct-7b-quantized-gguf-{{QUANT_TAG}}List all available models
lemonade list
This repository contains alternative Mistral-instruct-7B (https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2) quantized models in GGUF format for use with llama.cpp.
The models are fully compatible with the oficial llama.cpp release and can be used out-of-the-box.
I'm carefull to say "alternative" rather than "better" or "improved" as I have not put any effort into evaluating performance
differences in actual usage. Perplexity is lower compared to the "official" llama.cpp quantization, but perplexity is not
necessarily a good measure for real world performance. Nevertheless, perplexity does measure quantization error, so below is a table
comparing perplexities of these quantized models to the current llama.cpp quantization approach on Wikitext for a context length of 512 tokens.
The "Quantization Error" columns in the table are defined as (PPL(quantized model) - PPL(fp16))/PPL(fp16).
| Quantization | Model file | PPL(llama.cpp) | Quantization Error | PPL(new quants) | Quantization Error |
|---|---|---|---|---|---|
| Q3_K_S | mistral-instruct-7b-q3k-small.gguf | 6.9959 | 4.27% | 6.8920 | 2.72% |
| Q3_K_M | mistral-instruct-7b-q3k-medium.gguf | 6.8892 | 2.68% | 6.8089 | 1.48% |
| Q4_K_S | mistral-instruct-7b-q4k-small.gguf | 6.7649 | 0.82% | 6.7351 | 0.38% |
| Q5_K_S | mistral-instruct-7b-q5k-small.gguf | 6.7197 | 0.15% | 6.7186 | 0.13% |
| Q4_0 | mistral-instruct-7b-q40.gguf | 6.7728 | 0.94% | 6.7191 | 0.14% |
- Downloads last month
- 15
We're not able to determine the quantization variants.