CoolFace
Modelpublic

PollardWeights/Qwen2.5-1.5B-Instruct-Pollard

sourceHugging Faceapache-2.0updated 16d agoView on Hugging Face
0likes224downloads
Model Card

Qwen2.5-1.5B-Instruct — Pollard

### Pollard shrank this model: 3.08 GB (f16) → 0.94 GB — 69% smaller, 3.3× down. The smallest rung here; larger, higher-fidelity rungs are listed below. | format | this model's size | |---|---:| | f16 | 3.08 GB | | Q80 | ~1.63 GB | | Q6K | ~1.26 GB | | Q4KM | ~0.89 GB | | PollardMix (this repo's Q4_K_S) | 0.94 GB |

Pollard builds of Qwen/Qwen2.5-1.5B-Instruct made with Pollard Weights — a ladder of measured-allocation quants (bits placed by per-layer sensitivity, not a uniform crush).

Standard GGUF — runs in stock llama.cpp / ik_llama.cpp, Ollama, LM Studio. Trellis (IQ*_KT) files need ik_llama.cpp; the K-quants run anywhere.

Model details

Parameter count~1.5B
Architectureqwen2
Input supporttext
imatrixyes — see calibration
Perplexity measuredyes — table below

Which file should I choose?

Every rung is the same weights, sized to a different RAM budget by the measured allocation. Pick the largest one that fits your machine with room for context:

  • —~3 GB RAM / VRAM → `Q6_K` (1.27 GB).
  • —~3 GB RAM / VRAM → `Q5_K_M` (1.13 GB).
  • —~3 GB RAM / VRAM → `Q4_K_S` (0.94 GB).

Available files

filePPLsizetok/sMean KLDnotes
Qwen2.5-1.5B-Instruct-Pollard-Q4_K_S.gguf0.03150.94 GB95.4—Q4KS
Qwen2.5-1.5B-Instruct-Pollard-Q5_K_M.gguf0.00921.13 GB73.1—Q5KM
Qwen2.5-1.5B-Instruct-Pollard-Q6_K.gguf0.00501.27 GB73.2—Q6_K

tok/s is hardware-specific; the machine it was measured on is stated in the errata.

The imatrix win

Held-out KL-divergence vs the full f16 model (lower = closer), Q4KM at matched size:

buildsizemean KL
Q4KM with imatrix0.99 GB0.0266
Q4KM without imatrix0.99 GB0.0448

Same bits, ~40% lower KL — that is the entire reason these are imatrix builds.

Download a specific file

bash
pip install -U "huggingface_hub[cli]"
hf download PollardWeights/Qwen2.5-1.5B-Instruct-Pollard \
  --include "Qwen2.5-1.5B-Instruct-Pollard-Q4_K_S.gguf" --local-dir ./

How to run

These are standard GGUF and run with llama.cpp:

bash
llama-server -hf PollardWeights/Qwen2.5-1.5B-Instruct-Pollard:Q4_K_S

or from a local file:

bash
llama-cli    -m Qwen2.5-1.5B-Instruct-Pollard-Q4_K_S.gguf -ngl 99 -p "Explain why the sky is blue."
llama-server -m Qwen2.5-1.5B-Instruct-Pollard-Q4_K_S.gguf -ngl 99      # OpenAI-compatible API + web UI at :8080

They also work in anything built on llama.cpp — LM Studio, koboldcpp, Jan, ramalama, Ollama (ollama run hf.co/PollardWeights/Qwen2.5-1.5B-Instruct-Pollard).

imatrix (calibration)

The importance matrix (Qwen2.5-1.5B-Instruct-Pollard.imatrix, included) was computed on a mixed-domain corpus so the matrix sees every register the model serves.

ARM / AVX

llama.cpp repacks weights into an interleaved layout at load time for faster inference on ARM and AVX machines — no special file needed, online repacking covers these quants. The old Q4_0_4_4/4_8/8_8 variants are not required.

Errata

  • —Trellis (IQ*_KT) quants need ik_llama.cpp to build/run; K-quants run in any recent llama.cpp.
  • —Measured allocation places bits by per-layer sensitivity under a size budget.
  • —Single machine; replication invited.

Credits & license

Built with [Pollard Weights](https://github.com/WestWaters/pollard-weights) — frontier models, small hardware, no compromise.