Instructions to use eaddario/Dolphin3.0-Mistral-24B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use eaddario/Dolphin3.0-Mistral-24B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="eaddario/Dolphin3.0-Mistral-24B-GGUF", filename="Dolphin3.0-Mistral-24B-F16.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 eaddario/Dolphin3.0-Mistral-24B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf eaddario/Dolphin3.0-Mistral-24B-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 eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf eaddario/Dolphin3.0-Mistral-24B-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 eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use eaddario/Dolphin3.0-Mistral-24B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "eaddario/Dolphin3.0-Mistral-24B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "eaddario/Dolphin3.0-Mistral-24B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M
- Ollama
How to use eaddario/Dolphin3.0-Mistral-24B-GGUF with Ollama:
ollama run hf.co/eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M
- Unsloth Studio
How to use eaddario/Dolphin3.0-Mistral-24B-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 eaddario/Dolphin3.0-Mistral-24B-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 eaddario/Dolphin3.0-Mistral-24B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for eaddario/Dolphin3.0-Mistral-24B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use eaddario/Dolphin3.0-Mistral-24B-GGUF with Docker Model Runner:
docker model run hf.co/eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M
- Lemonade
How to use eaddario/Dolphin3.0-Mistral-24B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull eaddario/Dolphin3.0-Mistral-24B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Dolphin3.0-Mistral-24B-GGUF-Q4_K_M
List all available models
lemonade list
| ====== Perplexity statistics ====== | |
| Mean PPL(Q) : 8.602292 ± 0.060945 | |
| Mean PPL(base) : 7.669212 ± 0.052592 | |
| Cor(ln(PPL(Q)), ln(PPL(base))): 97.95% | |
| Mean ln(PPL(Q)/PPL(base)) : 0.114815 ± 0.001428 | |
| Mean PPL(Q)/PPL(base) : 1.121666 ± 0.001602 | |
| Mean PPL(Q)-PPL(base) : 0.933080 ± 0.014176 | |
| ====== KL divergence statistics ====== | |
| Mean KLD: 0.108536 ± 0.000393 | |
| Maximum KLD: 6.181332 | |
| 99.9% KLD: 1.618752 | |
| 99.0% KLD: 0.678996 | |
| 99.0% KLD: 0.678996 | |
| Median KLD: 0.069372 | |
| 10.0% KLD: 0.001637 | |
| 5.0% KLD: 0.000372 | |
| 1.0% KLD: 0.000039 | |
| Minimum KLD: -0.000000 | |
| ====== Token probability statistics ====== | |
| Mean Δp: -1.298 ± 0.024 % | |
| Maximum Δp: 90.866% | |
| 99.9% Δp: 43.591% | |
| 99.0% Δp: 24.341% | |
| 95.0% Δp: 11.986% | |
| 90.0% Δp: 6.674% | |
| 75.0% Δp: 0.897% | |
| Median Δp: -0.059% | |
| 25.0% Δp: -3.073% | |
| 10.0% Δp: -11.016% | |
| 5.0% Δp: -17.336% | |
| 1.0% Δp: -32.184% | |
| 0.1% Δp: -58.795% | |
| Minimum Δp: -99.298% | |
| RMS Δp : 9.309 ± 0.040 % | |
| Same top p: 83.878 ± 0.094 % | |