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
File size: 1,067 Bytes
7395353 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | ====== Perplexity statistics ======
Mean PPL(Q) : 7.895583 ± 0.054759
Mean PPL(base) : 7.669212 ± 0.052592
Cor(ln(PPL(Q)), ln(PPL(base))): 99.38%
Mean ln(PPL(Q)/PPL(base)) : 0.029090 ± 0.000771
Mean PPL(Q)/PPL(base) : 1.029517 ± 0.000794
Mean PPL(Q)-PPL(base) : 0.226371 ± 0.006353
====== KL divergence statistics ======
Mean KLD: 0.031400 ± 0.000136
Maximum KLD: 6.726107
99.9% KLD: 0.532302
99.0% KLD: 0.204553
99.0% KLD: 0.204553
Median KLD: 0.020073
10.0% KLD: 0.000422
5.0% KLD: 0.000093
1.0% KLD: 0.000009
Minimum KLD: -0.000013
====== Token probability statistics ======
Mean Δp: -0.223 ± 0.014 %
Maximum Δp: 66.844%
99.9% Δp: 27.325%
99.0% Δp: 15.333%
95.0% Δp: 7.936%
90.0% Δp: 4.574%
75.0% Δp: 0.828%
Median Δp: -0.003%
25.0% Δp: -1.190%
10.0% Δp: -5.309%
5.0% Δp: -8.723%
1.0% Δp: -16.788%
0.1% Δp: -33.037%
Minimum Δp: -87.879%
RMS Δp : 5.278 ± 0.027 %
Same top p: 90.875 ± 0.074 %
|