Instructions to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Trellis
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with Trellis:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard 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 PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S # Run inference directly in the terminal: llama cli -hf PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S # Run inference directly in the terminal: llama cli -hf PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
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 PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S # Run inference directly in the terminal: ./llama-cli -hf PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
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 PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
Use Docker
docker model run hf.co/PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
- LM Studio
- Jan
- vLLM
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "PollardWeights/Qwen2.5-14B-Instruct-Pollard" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "PollardWeights/Qwen2.5-14B-Instruct-Pollard", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
- Ollama
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with Ollama:
ollama run hf.co/PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
- Unsloth Desktop
- Pi
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with Docker Model Runner:
docker model run hf.co/PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
- Lemonade
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
Run and chat with the model
lemonade run user.Qwen2.5-14B-Instruct-Pollard-IQ3_S
List all available models
lemonade list
- Hermes Agent
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
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 PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use PollardWeights/Qwen2.5-14B-Instruct-Pollard with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "PollardWeights/Qwen2.5-14B-Instruct-Pollard:IQ3_S" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Qwen2.5-14B-Instruct โ Pollard
Pollard shrank this model: 27.5 GB (f16) โ 3.65 GB โ 87% smaller, 7.5ร down, and under half the size of NVFP4 (
7.8 GB) or Q4_K_M (9 GB).The 1-bit-class flagship (
IQ1_KT, 2.12 bpw), still beating uniform 1-bit on every metric. Need more quality? TheIQ3_S / IQ4_XS / Q6_Krungs are larger, higher-fidelity options.
format this model's size f16 27.5 GB Q8_0 ~15.7 GB Q6_K ~12.2 GB Q4_K_M / NVFP4 ~9.0 / ~7.8 GB PollardMix (this file) 3.65 GB
A memory-fit, mixed-precision build of Qwen2.5-14B-Instruct made with Pollard Weights. The expert/FFN body is crushed to 1-bit trellis (IQ1_KT); attention, the residual writers (ffn_down), embeddings, output and the first/last blocks are protected. The result sits in the 1-bit size class but reads much closer to 2-bit quality.
This is a standard GGUF โ runs in stock llama.cpp / ik_llama.cpp, Ollama, and LM Studio.
The numbers (WikiText-2 raw, ctx 2048, 145 chunks)
| build | PPL | size | bpw | Mean KLD | Median KLD | top-1 |
|---|---|---|---|---|---|---|
| uniform IQ2_KT (2-bit ceiling) | 6.92 | 4.30 GB | 2.50 | 0.353 | 0.128 | 76.85% |
| PollardMix (this model) | 8.27 | 3.65 GB | 2.12 | 0.552 | 0.253 | 70.79% |
| uniform IQ1_KT (1-bit baseline) | 9.65 | 3.37 GB | 1.94 | 0.714 | 0.363 | 66.41% |
PollardMix beats the uniform 1-bit trellis quant on every metric โ PPL โ14%, Mean KLD โ23%, Median KLD โ30%, top-1 +4.4 pts โ at +8.5% size, and stays under the 2-bit ceiling. It also passes a chat-coherence gate (explanation, code, reasoning, creative continuation all coherent).
Allocation (the surgery)
| tensor role | atom | |
|---|---|---|
| expert / FFN body (gate, up) | IQ1_KT |
crushed |
| attention k, v | IQ1_KT |
crushed |
| attention q, output | IQ2_KT |
protected |
ffn_down (residual writer) |
IQ2_KT |
protected |
| first-2 / last-2 blocks | IQ2_KT |
protected |
| token embeddings | Q4_K |
kept |
| output head | Q6_K |
kept |
| norms | F32 |
kept |
Usage
# llama.cpp / ik_llama.cpp
llama-cli -m Qwen2.5-14B-Instruct-Pollard-IQ1_KT.gguf -p "Explain why the sky is blue." --temp 0.7 --repeat-penalty 1.15
# Ollama
ollama run hf.co/PollardWeights/Qwen2.5-14B-Instruct-Pollard
The *_KT trellis quants are an ik_llama.cpp format (QTIP-style); build ik_llama.cpp for best speed, though the file loads in stock llama.cpp too.
Errata (honest scope)
- Chat at this tier benefits from
--repeat-penalty 1.15; stock sampling can loop. - Quality win vs uniform 1-bit (better PPL/KL/top-1, +0.28 GB), not smaller-and-better; it is under the 2-bit ceiling, not equal to it.
- KL measured vs a
Q8_0reference (near-lossless; the 27.5 GB f16 exceeds a 16 GB card), consistent to within ~0.0005 of true f16. - Single machine; replication invited.
Built with Pollard Weights โ frontier models, small hardware, no compromise.
- Downloads last month
- 566
