Instructions to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF", filename="huihui-qwen35-4b-BF16.gguf", )
llm.create_chat_completion( 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" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_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 hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_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 hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
Use Docker
docker model run hf.co/hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-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": "hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF", "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/hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
- Ollama
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with Ollama:
ollama run hf.co/hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
- Unsloth Studio
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-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 hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-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 hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF to start chatting
- Pi
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
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": "hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_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 hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with Docker Model Runner:
docker model run hf.co/hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
- Lemonade
How to use hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull hotdogs/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated-GGUF-Q4_K_M
List all available models
lemonade list
Upload README.md with huggingface_hub
Browse files|
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
- zh
|
| 6 |
+
- multilingual
|
| 7 |
+
tags:
|
| 8 |
+
- qwen3.5
|
| 9 |
+
- qwen35
|
| 10 |
+
- gguf
|
| 11 |
+
- multimodal
|
| 12 |
+
- vision
|
| 13 |
+
- image-text-to-text
|
| 14 |
+
- abliterated
|
| 15 |
+
- uncensored
|
| 16 |
+
- llama.cpp
|
| 17 |
+
- 4b
|
| 18 |
+
pipeline_tag: image-text-to-text
|
| 19 |
+
base_model:
|
| 20 |
+
- huihui-ai/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated
|
| 21 |
+
- Qwen/Qwen3.5-4B
|
| 22 |
+
library_name: llama.cpp
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
# Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated — GGUF
|
| 26 |
+
|
| 27 |
+
GGUF conversion of [huihui-ai/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated](https://huggingface.co/huihui-ai/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated) for use with [llama.cpp](https://github.com/ggerganov/llama.cpp).
|
| 28 |
+
|
| 29 |
+
## Credits
|
| 30 |
+
|
| 31 |
+
| Role | Model / Author |
|
| 32 |
+
|---|---|
|
| 33 |
+
| **Base LLM** | [Qwen/Qwen3.5-4B](https://huggingface.co/Qwen/Qwen3.5-4B) — Alibaba Qwen Team |
|
| 34 |
+
| **Abliterated (uncensored)** | [huihui-ai/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated](https://huggingface.co/huihui-ai/Huihui-Qwen3.5-4B-Claude-4.6-Opus-abliterated) — Huihui AI |
|
| 35 |
+
| **GGUF Conversion** | [hotdogs](https://huggingface.co/hotdogs) — via [llama.cpp](https://github.com/ggerganov/llama.cpp) |
|
| 36 |
+
|
| 37 |
+
🙏 Huge thanks to **Qwen Team** (Alibaba) for the base model, **Huihui AI** for the abliteration, and **ggerganov** for llama.cpp!
|
| 38 |
+
|
| 39 |
+
## Model Details
|
| 40 |
+
|
| 41 |
+
| Spec | Value |
|
| 42 |
+
|---|---|
|
| 43 |
+
| Parameters | ~4B |
|
| 44 |
+
| Architecture | Qwen3.5 Multimodal (QWEN35) |
|
| 45 |
+
| hiddensize | 2560 |
|
| 46 |
+
| Layers | 32 |
|
| 47 |
+
| Attention Heads | 16 (KV: 4) |
|
| 48 |
+
| Context Length | **262,144** (256K tokens) |
|
| 49 |
+
| FFN Intermediate | 9216 |
|
| 50 |
+
| Vision Encoder | 24 layers, hiddensize=1024, patchsize=16 |
|
| 51 |
+
| Modality | **image-text-to-text** 🖼️➡️📝 |
|
| 52 |
+
| Censorship | **Abliterated** (refusal direction removed) |
|
| 53 |
+
| License | Apache 2.0 |
|
| 54 |
+
|
| 55 |
+
## Available Quantizations
|
| 56 |
+
|
| 57 |
+
| File | Size | BPW | Quality | Recommended For |
|
| 58 |
+
|---|---|---|---|---|
|
| 59 |
+
| huihui-qwen35-4b-BF16.gguf | 7.9 GB | 16.00 | ⭐ Full | Best quality, 16GB+ VRAM |
|
| 60 |
+
| huihui-qwen35-4b-Q8_0.gguf | 4.2 GB | ~8.00 | ⭐ Very High | Balanced, 8GB+ VRAM |
|
| 61 |
+
| huihui-qwen35-4b-Q4_K_M.gguf | 2.6 GB | 5.13 | ⭐ Good | Low VRAM, 6GB+ VRAM |
|
| 62 |
+
| mmproj-huihui-qwen35-4b-BF16.gguf | 645 MB | — | Vision | **Multimodal projector** (required for images) |
|
| 63 |
+
|
| 64 |
+
## Usage
|
| 65 |
+
|
| 66 |
+
### Text-only
|
| 67 |
+
|
| 68 |
+
./llama-cli -m huihui-qwen35-4b-Q4_K_M.gguf -p "Hello!" -n 256
|
| 69 |
+
|
| 70 |
+
### Multimodal (image + text)
|
| 71 |
+
|
| 72 |
+
./llama-qwen2vl-cli -m huihui-qwen35-4b-Q4_K_M.gguf --mmproj mmproj-huihui-qwen35-4b-BF16.gguf --image photo.jpg -p "Describe this image"
|
| 73 |
+
|
| 74 |
+
### Server (OpenAI-compatible API)
|
| 75 |
+
|
| 76 |
+
./llama-server -m huihui-qwen35-4b-Q4_K_M.gguf --mmproj mmproj-huihui-qwen35-4b-BF16.gguf --host 0.0.0.0 --port 8080
|
| 77 |
+
|
| 78 |
+
### Python (llama-cpp-python)
|
| 79 |
+
|
| 80 |
+
llm = Llama(model_path="huihui-qwen35-4b-Q4_K_M.gguf", n_ctx=32768)
|
| 81 |
+
output = llm("Hello!", max_tokens=128)
|
| 82 |
+
|
| 83 |
+
## About Abliteration
|
| 84 |
+
|
| 85 |
+
This model has undergone **directional ablation** — a technique that removes the "refusal direction" from the model's activation space (Arditi et al. 2024). The model will not refuse questions that base Qwen3.5 would normally decline.
|
| 86 |
+
|
| 87 |
+
**Use responsibly.** Ensure your use case complies with applicable laws.
|
| 88 |
+
|
| 89 |
+
## Conversion Notes
|
| 90 |
+
|
| 91 |
+
- Converted with llama.cpp convert_hf_to_gguf.py
|
| 92 |
+
- BF16 output type
|
| 93 |
+
- QWEN35 architecture, Qwen3VLVisionModel for mmproj
|
| 94 |
+
- Metadata preserved from source model
|