Instructions to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF", filename="gemma-4-26B-A4B-it-heretic-IQ4-NL_ud-imtrx-v2.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF # Run inference directly in the terminal: llama-cli -hf elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF # Run inference directly in the terminal: llama-cli -hf elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
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 elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF # Run inference directly in the terminal: ./llama-cli -hf elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
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 elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF # Run inference directly in the terminal: ./build/bin/llama-cli -hf elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
Use Docker
docker model run hf.co/elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
- LM Studio
- Jan
- Ollama
How to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF with Ollama:
ollama run hf.co/elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
- Unsloth Studio new
How to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF 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 elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF 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 elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF to start chatting
- Pi new
How to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
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": "elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
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 elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
Run Hermes
hermes
- Docker Model Runner
How to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF with Docker Model Runner:
docker model run hf.co/elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
- Lemonade
How to use elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF
Run and chat with the model
lemonade run user.nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF-{{QUANT_TAG}}List all available models
lemonade list
Run and chat with the model
lemonade run user.nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF-{{QUANT_TAG}}List all available models
lemonade list⚠️ UPDATE APRIL 09: V2 RELEASE (CRITICAL FIXES)
The previous version was built on outdated llama.cpp kernels. This V2 release incorporates the latest architectural fixes for Gemma-4, including the <unused24> buffer fix and Logit Soft-Capping.
THE ULTIMATE IQ4_NL (V2) - APRIL 2026 FIXES
The previous quant is out of date and MISSING critical architectural fixes. This V2 release is the first to incorporate the Unsloth Dynamic 2.0 re-computed imatrix and the latest llama.cpp Gemma-4 patches.
What's New in V2? (The Unsloth Special)
- CRITICAL FIX:
<unused24>token buffer overlap fixed (No more random logic crashes). - KV-Cache Support: Full attention rotation for heterogeneous iSWA (Better long-context stability).
- Vocab Fix: Byte token handling added to BPE de-tokenizer (Fixes weird character output).
- BOS Logic:
add_bosnow defaults toTruefor native Gemma-4 behavior. - Logit Soft-Capping: Correctly reads
final_logit_softcapping(CRITICAL for preventing NaN/Infinity loops). - Newline Logic: Custom newline split logic for superior formatting.
Why this Quant?
- Format:
IQ4_NL(Non-Linear) - Higher logic-per-bit than Q4_K_M or Q4_0. - Brain: High-res
Q8_0Token Embeddings and Output Head (Prevents vocabulary degradation). - Speed: Specially optimized for CPU/Laptop P-Cores (~7 t/s on 12th Gen i3 Dual DDR4 Channel at 3200MHz, CPU ONLY inference!).
- Matrix: Built with the latest April 07 re-computed Unsloth imatrix.
All credits to Merijn Hendriks (nohurry) for the heretic weights and Unsloth for the imatrix file.
- Downloads last month
- 525
We're not able to determine the quantization variants.
Pull the model
# Download Lemonade from https://lemonade-server.ai/lemonade pull elpirater312/nohurry-gemma-4-26B-A4B-it-heretic-IQ4_NL-ud-imtrx-GUFF