Instructions to use jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller 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 jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller 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 jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS # Run inference directly in the terminal: llama cli -hf jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS # Run inference directly in the terminal: llama cli -hf jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
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 jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS # Run inference directly in the terminal: ./llama-cli -hf jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
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 jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS # Run inference directly in the terminal: ./build/bin/llama-cli -hf jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
Use Docker
docker model run hf.co/jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
- LM Studio
- Jan
- Ollama
How to use jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller with Ollama:
ollama run hf.co/jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
- Unsloth Studio
How to use jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller 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 jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller 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 jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller to start chatting
- Pi
How to use jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
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": "jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller with Docker Model Runner:
docker model run hf.co/jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
- Lemonade
How to use jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
Run and chat with the model
lemonade run user.Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller-IQ4_XS
List all available models
lemonade list
- Hermes Agent
How to use jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
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 jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS
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 "jrell/Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller:IQ4_XS" \ --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"
Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller
A custom hybrid quantization of the Qwen3.8-27B base model, specifically designed to fit Multi-Token Prediction (MTP) and long context into a strict 16GB VRAM hardware budget (like consumer RTX 4080 / RTX 5080 cards).
How It Works
Instead of compressing the whole model equally, it is split by layer type:
- Attention Layers (Brain & Logic): Kept high at
IQ4_XSto protect reasoning, coding, and formatting logic. - FFN Layers: Compressed down to
IQ3_Sto trim file size. The trade-off is a minor loss in general knowledge and long-context recall, so if you use the model for something like creative writing, you'd probably be better off just using normal IQ4_XS quants. - The Result: The model file drops down to ~13.5 GB, leaving enough room for MTP and/or higher context size. The 5080 laptop GPU it was tested on (approximately 5070 desktop equivalent) results in 64k context with MTP at 50 t/s and 128k without MTP at around 30 t/s.
How It Was Made
The model was compiled using mainline llama.cpp.
The Compilation Command:
/home/llama.cpp/build/bin/llama-quantize \
--imatrix Qwen3.8-27B.imatrix.mradermacher-ubergarm.dat \
--tensor-type ffn_down=iq3_s \
--tensor-type ffn_up=iq3_s \
--tensor-type ffn_gate=iq3_s \
BF16/Qwen3.8-27B-BF16.gguf \
Qwen3.8-27B-i1-IQ4_XS-GGUF-Smaller.gguf \
IQ4_XS \
64
Credits & Acknowledgments
- lemonyins — For the original methodology: https://huggingface.co/lemonyins/Qwen3.6-27B-uncensored-abliterated-i1-IQ4_XS-GGUF-Smaller.
- cHunter789 — For providing the iMatrix data: https://huggingface.co/cHunter789/Qwen3.8-27B-i1-IQ4_KS_KT-GGUF
- Unsloth — For the base bf16 model: https://huggingface.co/unsloth/Qwen3.8-27B-GGUF
- llama.cpp — the ggml/llama.cpp team for the base quantization framework.
- Downloads last month
- 11,233
4-bit