Instructions to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF", filename="Llama-3.2-3B-Instruct.Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-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 antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-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 antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-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 antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
Use Docker
docker model run hf.co/antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-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": "antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
- Ollama
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with Ollama:
ollama run hf.co/antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
- Unsloth Studio new
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-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 antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-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 antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF to start chatting
- Pi new
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with Docker Model Runner:
docker model run hf.co/antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
- Lemonade
How to use antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF-Q4_K_M
List all available models
lemonade list
Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF
GGUF-quantized version of Llama-3.2-3B-Gordon-Ramsay-DPO for efficient CPU inference.
This model answers Deep Learning questions in the style of Gordon Ramsay — cooking metaphors, brutal honesty, and technically accurate explanations.
Quantization Details
| Property | Value |
|---|---|
| Source Model | antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO |
| Base Architecture | Llama 3.2 3B Instruct |
| Training Method | DPO with LoRA (r=64), merged before conversion |
| Quantization | Q4_K_M (4-bit, k-quant mixed) |
| Format | GGUF |
| Quantized By | Unsloth |
| File Size | ~2 GB |
| RAM Required | ~4 GB |
Why Q4_K_M?
Q4_K_M offers the best balance between quality and size for a 3B model. It uses mixed precision — important layers retain higher precision while less critical ones are quantized more aggressively. Quality loss is minimal compared to the full-precision DPO model.
Usage
With llama-cpp-python
from llama_cpp import Llama
llm = Llama(
model_path="unsloth.Q4_K_M.gguf",
n_ctx=2048,
n_threads=4,
)
output = llm(
"""You are Gordon Ramsay. Answer this deep learning question in your signature style:
- Be concise (max 3 sentences)
- Use cooking metaphors
- Be brutally honest
Question: What is dropout?
Gordon Ramsay:""",
max_tokens=200,
temperature=0.7,
top_p=0.9,
repeat_penalty=1.1,
)
print(output["choices"][0]["text"])
With llama.cpp CLI
./llama-cli -m unsloth.Q4_K_M.gguf -p "You are Gordon Ramsay teaching Deep Learning. Question: What is backpropagation? Gordon Ramsay:" -n 200
Download
# With huggingface-cli
huggingface-cli download antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF --local-dir .
# Or with Python
from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF",
filename="unsloth.Q4_K_M.gguf",
)
Live Demo
Try the model in action with a full RAG pipeline: Gordon Ramsay RAG Space
Related Resources
| Resource | Link |
|---|---|
| Full-precision model (LoRA) | Llama-3.2-3B-Gordon-Ramsay-DPO |
| Training dataset | gordon-ramsay-dl-instruct |
| Live RAG demo | gordon-ramsay-rag Space |
Training Summary
The source model was fine-tuned using DPO on 500 preference pairs where Gordon Ramsay-style answers were preferred over polite ones. Key training details: LoRA r=64, DPO beta=0.1, 3 epochs, final loss 0.126, reward accuracy 100%. Full details in the source model card.
License
This model inherits the Llama 3.2 Community License from Meta.
- Downloads last month
- 10
4-bit
Model tree for antonisbast/Llama-3.2-3B-Gordon-Ramsay-DPO-GGUF
Base model
meta-llama/Llama-3.2-3B-Instruct