Instructions to use ubergarm/Qwen3-14B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ubergarm/Qwen3-14B-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 ubergarm/Qwen3-14B-GGUF # Run inference directly in the terminal: llama cli -hf ubergarm/Qwen3-14B-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ubergarm/Qwen3-14B-GGUF # Run inference directly in the terminal: llama cli -hf ubergarm/Qwen3-14B-GGUF
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 ubergarm/Qwen3-14B-GGUF # Run inference directly in the terminal: ./llama-cli -hf ubergarm/Qwen3-14B-GGUF
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 ubergarm/Qwen3-14B-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf ubergarm/Qwen3-14B-GGUF
Use Docker
docker model run hf.co/ubergarm/Qwen3-14B-GGUF
- LM Studio
- Jan
- vLLM
How to use ubergarm/Qwen3-14B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ubergarm/Qwen3-14B-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": "ubergarm/Qwen3-14B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ubergarm/Qwen3-14B-GGUF
- Ollama
How to use ubergarm/Qwen3-14B-GGUF with Ollama:
ollama run hf.co/ubergarm/Qwen3-14B-GGUF
- Unsloth Studio
How to use ubergarm/Qwen3-14B-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 ubergarm/Qwen3-14B-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 ubergarm/Qwen3-14B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ubergarm/Qwen3-14B-GGUF to start chatting
- Pi
How to use ubergarm/Qwen3-14B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ubergarm/Qwen3-14B-GGUF
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": "ubergarm/Qwen3-14B-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use ubergarm/Qwen3-14B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ubergarm/Qwen3-14B-GGUF
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 "ubergarm/Qwen3-14B-GGUF" \ --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"
- Docker Model Runner
How to use ubergarm/Qwen3-14B-GGUF with Docker Model Runner:
docker model run hf.co/ubergarm/Qwen3-14B-GGUF
- Lemonade
How to use ubergarm/Qwen3-14B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ubergarm/Qwen3-14B-GGUF
Run and chat with the model
lemonade run user.Qwen3-14B-GGUF-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use ubergarm/Qwen3-14B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ubergarm/Qwen3-14B-GGUF
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 ubergarm/Qwen3-14B-GGUF
Run Hermes
hermes
- Atomic Chat
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf ubergarm/Qwen3-14B-GGUF# Run inference directly in the terminal:
llama cli -hf ubergarm/Qwen3-14B-GGUFUse 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 ubergarm/Qwen3-14B-GGUF# Run inference directly in the terminal:
./llama-cli -hf ubergarm/Qwen3-14B-GGUFBuild 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 ubergarm/Qwen3-14B-GGUF# Run inference directly in the terminal:
./build/bin/llama-cli -hf ubergarm/Qwen3-14B-GGUFUse Docker
docker model run hf.co/ubergarm/Qwen3-14B-GGUF
ik_llama.cpp imatrix Quantizations of Qwen/Qwen3-14B
This quant collection REQUIRES ik_llama.cpp fork to support advanced non-linear SotA quants. Do not download these big files and expect them to run on mainline vanilla llama.cpp, ollama, LM Studio, KoboldCpp, etc!
NOTE ik_llama.cpp can also run your existing GGUFs from bartowski, unsloth, mradermacher, etc if you want to try it out before downloading my quants.
These quants provide best in class quality for the given memory footprint.
Big Thanks
Shout out to Wendell and the Level1Techs crew, the community Forums, YouTube Channel! BIG thanks for providing BIG hardware expertise and access to run these experiments and make these great quants available to the community!!!
Also thanks to all the folks in the quanting and inferencing community here and on r/LocalLLaMA for tips and tricks helping each other run all the fun new models!
Excited to share and learn together. Thanks!
Quant Collection
So far these are my best recipes offering the great quality in good memory footprint breakpoints.
Qwen3-14B-IQ4_KS
8.454 GiB (4.917 BPW)
- type f32: 161 tensors - norms etc.
- type iq6_k: 2 tensors - token_embd/output
- type iq4_ks: 80 tensors -
ffn_(gate|up) - type iq5_ks: 200 tensors -
ffn_downand allattn_*
This quant is designed to take advantage of faster iq4_ks and new iq5_ks quants.
This quant is designed for full GPU offload of 32k context (unquantized f16 kv-cache) in < 16GB VRAM (nvidia-smi reports ~13856MiB VRAM usage). Shrinking the attn tensors improves token generation performance over full Q8_0 as shown in llama-sweep-bench speed benchmarking.
Quantization
๐ Secret Recipe
#!/usr/bin/env bash
# token_embd.weight, torch.bfloat16 --> BF16, shape = {5120, 151936}
#
# blk.28.ffn_down.weight, torch.bfloat16 --> BF16, shape = {17408, 5120}
# blk.28.ffn_gate.weight, torch.bfloat16 --> BF16, shape = {5120, 17408}
# blk.28.ffn_up.weight, torch.bfloat16 --> BF16, shape = {5120, 17408}
#
# blk.28.attn_output.weight, torch.bfloat16 --> BF16, shape = {5120, 5120}
# blk.28.attn_q.weight, torch.bfloat16 --> BF16, shape = {5120, 5120}
# blk.28.attn_k.weight, torch.bfloat16 --> BF16, shape = {5120, 1024}
# blk.28.attn_v.weight, torch.bfloat16 --> BF16, shape = {5120, 1024}
#
# blk.28.attn_norm.weight, torch.bfloat16 --> F32, shape = {5120}
# blk.28.ffn_norm.weight, torch.bfloat16 --> F32, shape = {5120}
# blk.28.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {128}
# blk.28.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {128}
#
# output_norm.weight, torch.bfloat16 --> F32, shape = {5120}
# output.weight, torch.bfloat16 --> BF16, shape = {5120, 151936}
custom="
# Attention
blk\.[0-9]\.attn_.*\.weight=iq5_ks
blk\.[1-3][0-9]\.attn_.*\.weight=iq5_ks
# FFN
blk\.[0-9]\.ffn_down\.weight=iq5_ks
blk\.[1-3][0-9]\.ffn_down\.weight=iq5_ks
blk\.[0-9]\.ffn_(gate|up)\.weight=iq4_ks
blk\.[1-3][0-9]\.ffn_(gate|up)\.weight=iq4_ks
# Token embedding/output
token_embd\.weight=iq6_k
output\.weight=iq6_k
"
custom=$(
echo "$custom" | grep -v '^#' | \
sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
)
./build/bin/llama-quantize \
--imatrix /mnt/astrodata/llm/models/ubergarm/Qwen3-14B-GGUF/Qwen3-14B-BF16-imatrix.dat \
--custom-q "$custom" \
/mnt/astrodata/llm/models/ubergarm/Qwen3-14B-GGUF/Qwen3-14B-BF16.gguf \
/mnt/astrodata/llm/models/ubergarm/Qwen3-14B-GGUF/Qwen3-14B-IQ4_KS.gguf \
IQ4_KS \
16
Methodology
Full methdology and some benchmarks available in this Quant Cookers Basic Guide
References
- Downloads last month
- 8

Install (macOS, Linux)
# Start a local OpenAI-compatible server with a web UI: llama serve -hf ubergarm/Qwen3-14B-GGUF# Run inference directly in the terminal: llama cli -hf ubergarm/Qwen3-14B-GGUF