Views
No views yet
Qwen/Qwen2.5-14B-Instruct,
produced by an automated quantization pipeline (llama.cpp, CPU build, CI on GitHub Actions)..gguf file you can load with llama.cpp / llama-cpp-python / Ollama / LM Studio.qwen2.5-14b-instruct-Q4_K_M.gguf # ~4.5 bpw, smallest, fastest, slight quality loss
qwen2.5-14b-instruct-Q5_K_M.gguf # ~5.5 bpw, balanced
qwen2.5-14b-instruct-Q8_0.gguf # ~8.5 bpw, near-lossless reference1from llama_cpp import Llama
2llm = Llama.from_pretrained(
3 repo_id="ggfox00000/qwen2.5-14b-instruct-gguf",
4 filename="qwen2.5-14b-instruct-Q4_K_M.gguf",
5 n_ctx=32768,
6 n_gpu_layers=-1,
7)
8out = llm.create_chat_completion(messages=[{"role":"user","content":"Bonjour"}])
9print(out["choices"][0]["message"]["content"])| Quant | Method | Approximate quality vs FP16 |
|---|---|---|
| Q4_K_M | k-quants, mixed bits per block | ~95-97% |
| Q5_K_M | k-quants, mixed bits per block | ~98-99% |
| Q8_0 | block-wise 8-bit linear | ~99.5%+ |
Qwen/Qwen2.5-14B-Instruct for the original model,
license, benchmarks and capabilities.