Image-Text-to-Text
GGUF
English
multilingual
uncensored
gemma4
vision
multimodal
audio
abliterated
imatrix
conversational
Instructions to use HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive 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 HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive 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 HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M # Run inference directly in the terminal: llama cli -hf HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M # Run inference directly in the terminal: llama cli -hf HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
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 HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M # Run inference directly in the terminal: ./llama-cli -hf HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
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 HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
Use Docker
docker model run hf.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
- LM Studio
- Jan
- vLLM
How to use HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
- Ollama
How to use HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive with Ollama:
ollama run hf.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
- Unsloth Desktop
- Pi
How to use HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive with Docker Model Runner:
docker model run hf.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
- Lemonade
How to use HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
Run and chat with the model
lemonade run user.Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-IQ3_M
List all available models
lemonade list
- Hermes Agent
How to use HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
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 HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M
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 "HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive:IQ3_M" \ --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"
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: gemma
|
| 3 |
+
tags:
|
| 4 |
+
- uncensored
|
| 5 |
+
- gemma4
|
| 6 |
+
- gguf
|
| 7 |
+
- vision
|
| 8 |
+
- multimodal
|
| 9 |
+
- audio
|
| 10 |
+
language:
|
| 11 |
+
- en
|
| 12 |
+
- multilingual
|
| 13 |
+
pipeline_tag: image-text-to-text
|
| 14 |
+
base_model: google/gemma-4-e2b-it
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# Gemma-4-E2B-Uncensored-HauhauCS-Aggressive
|
| 18 |
+
|
| 19 |
+
Gemma 4 E2B-IT uncensored by HauhauCS. **0/465 Refusals\*\*\***
|
| 20 |
+
|
| 21 |
+
> **HuggingFace's "Hardware Compatibility" widget doesn't recognize K_P quants** β it may show fewer files than actually exist. Click **"View +X variants"** or go to **Files and versions** to see all available downloads.
|
| 22 |
+
|
| 23 |
+
## About
|
| 24 |
+
|
| 25 |
+
No changes to datasets or capabilities. Fully functional, 100% of what the original authors intended - just without the refusals.
|
| 26 |
+
|
| 27 |
+
These are meant to be the best lossless uncensored models out there.
|
| 28 |
+
|
| 29 |
+
## Aggressive Variant
|
| 30 |
+
|
| 31 |
+
Stronger uncensoring β model is fully unlocked and won't refuse prompts. May occasionally append short disclaimers (baked into base model training, not refusals) but full content is always generated.
|
| 32 |
+
|
| 33 |
+
For a more conservative uncensor that keeps some safety guardrails, check the Balanced variant when it's available.
|
| 34 |
+
|
| 35 |
+
## Downloads
|
| 36 |
+
|
| 37 |
+
| File | Quant | BPW | Size |
|
| 38 |
+
|------|-------|-----|------|
|
| 39 |
+
| [Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q8_K_P.gguf](https://huggingface.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive/resolve/main/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q8_K_P.gguf) | Q8_K_P | 9.4 | 4.7 GB |
|
| 40 |
+
| β | Q8_0 | 8.5 | β |
|
| 41 |
+
| [Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q6_K_P.gguf](https://huggingface.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive/resolve/main/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q6_K_P.gguf) | Q6_K_P | 7.0 | 3.7 GB |
|
| 42 |
+
| β | Q6_K | 6.6 | β |
|
| 43 |
+
| [Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q5_K_P.gguf](https://huggingface.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive/resolve/main/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q5_K_P.gguf) | Q5_K_P | 6.1 | 3.5 GB |
|
| 44 |
+
| [Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q4_K_P.gguf](https://huggingface.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive/resolve/main/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q4_K_P.gguf) | Q4_K_P | 5.2 | 3.3 GB |
|
| 45 |
+
| [Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q3_K_P.gguf](https://huggingface.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive/resolve/main/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q3_K_P.gguf) | Q3_K_P | 4.1 | 3.1 GB |
|
| 46 |
+
| [Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-IQ3_M.gguf](https://huggingface.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive/resolve/main/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-IQ3_M.gguf) | IQ3_M | 3.7 | 3.0 GB |
|
| 47 |
+
| [Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q2_K_P.gguf](https://huggingface.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive/resolve/main/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q2_K_P.gguf) | Q2_K_P | 3.5 | 2.9 GB |
|
| 48 |
+
| [mmproj-Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-f16.gguf](https://huggingface.co/HauhauCS/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive/resolve/main/mmproj-Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-f16.gguf) | mmproj (f16) | β | 940 MB |
|
| 49 |
+
|
| 50 |
+
All quants generated with importance matrix (imatrix) for optimal quality preservation on abliterated weights.
|
| 51 |
+
|
| 52 |
+
## What are K_P quants?
|
| 53 |
+
|
| 54 |
+
K_P ("Perfect") quants are HauhauCS custom quantizations that use model-specific analysis to selectively preserve quality where it matters most. Each model gets its own optimized quantization profile.
|
| 55 |
+
|
| 56 |
+
A K_P quant effectively bumps quality up by 1-2 quant levels at only ~5-15% larger file size than the base quant. Fully compatible with llama.cpp, LM Studio, and any GGUF-compatible runtime β no special builds needed.
|
| 57 |
+
|
| 58 |
+
**Note:** K_P quants may show as "?" in LM Studio's quant column. This is a display issue only β the model loads and runs fine.
|
| 59 |
+
|
| 60 |
+
## Specs
|
| 61 |
+
|
| 62 |
+
- 2B parameters
|
| 63 |
+
- 35 layers, mixed sliding window (512) + full attention
|
| 64 |
+
- 131K context
|
| 65 |
+
- Natively multimodal (text, image, video, audio)
|
| 66 |
+
- 20 KV shared layers for memory efficiency
|
| 67 |
+
- Based on [google/gemma-4-e2b-it](https://huggingface.co/google/gemma-4-e2b-it)
|
| 68 |
+
|
| 69 |
+
## Recommended Settings
|
| 70 |
+
|
| 71 |
+
From the official Google Gemma 4 authors:
|
| 72 |
+
|
| 73 |
+
- `temperature=1.0, top_p=0.95, top_k=64`
|
| 74 |
+
|
| 75 |
+
**Important:**
|
| 76 |
+
- Use `--jinja` flag with llama.cpp for proper chat template handling
|
| 77 |
+
- Vision/audio support requires the `mmproj` file alongside the main GGUF
|
| 78 |
+
|
| 79 |
+
## Usage
|
| 80 |
+
|
| 81 |
+
Works with llama.cpp, LM Studio, Jan, koboldcpp, and other GGUF-compatible runtimes.
|
| 82 |
+
|
| 83 |
+
```bash
|
| 84 |
+
# Text only
|
| 85 |
+
llama-cli -m Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q4_K_P.gguf \
|
| 86 |
+
--jinja -c 8192 -ngl 99
|
| 87 |
+
|
| 88 |
+
# With vision/audio
|
| 89 |
+
llama-cli -m Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q4_K_P.gguf \
|
| 90 |
+
--mmproj mmproj-Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-f16.gguf \
|
| 91 |
+
--jinja -c 8192 -ngl 99
|
| 92 |
+
```
|
| 93 |
+
|
| 94 |
+
## Other Sizes
|
| 95 |
+
|
| 96 |
+
- [Gemma-4-E4B-Uncensored-HauhauCS-Aggressive](https://huggingface.co/HauhauCS/Gemma-4-E4B-Uncensored-HauhauCS-Aggressive) β 4B version, more capable
|
| 97 |
+
|
| 98 |
+
---
|
| 99 |
+
|
| 100 |
+
**\*** Gemma 4 didn't get as much manual testing time at longer context as my other releases. Google is now using techniques similar to NVIDIA's GenRM β generative reward models that act as internal critics β making (true) uncensoring an increasingly challenging field. I expect 99.999% of users won't hit edge cases, but the asterisk is there for honesty.
|
| 101 |
+
|
| 102 |
+
**\*\*** This is a 2B model. Temper your expectations β it's impressive for its size, but it's still 2B parameters. Complex reasoning, nuanced roleplay, and long coherent outputs are not its strong suit. Great for quick tasks, mobile/edge deployment, and experimentation.
|