Text Generation
GGUF
designer-instruct
vision
multimodal
zenlm
zen
abliterated
Mixture of Experts
ocr
document-understanding
hanzo
conversational
Instructions to use zenlm/zen-designer-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 zenlm/zen-designer-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 zenlm/zen-designer-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf zenlm/zen-designer-gguf:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf zenlm/zen-designer-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf zenlm/zen-designer-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 zenlm/zen-designer-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf zenlm/zen-designer-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 zenlm/zen-designer-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf zenlm/zen-designer-gguf:Q4_K_M
Use Docker
docker model run hf.co/zenlm/zen-designer-gguf:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use zenlm/zen-designer-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "zenlm/zen-designer-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": "zenlm/zen-designer-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zenlm/zen-designer-gguf:Q4_K_M
- Ollama
How to use zenlm/zen-designer-gguf with Ollama:
ollama run hf.co/zenlm/zen-designer-gguf:Q4_K_M
- Unsloth Studio
How to use zenlm/zen-designer-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 zenlm/zen-designer-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 zenlm/zen-designer-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for zenlm/zen-designer-gguf to start chatting
- Pi
How to use zenlm/zen-designer-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf zenlm/zen-designer-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": "zenlm/zen-designer-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use zenlm/zen-designer-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 zenlm/zen-designer-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 zenlm/zen-designer-gguf:Q4_K_M
Run Hermes
hermes
- OpenClaw new
How to use zenlm/zen-designer-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf zenlm/zen-designer-gguf:Q4_K_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 "zenlm/zen-designer-gguf:Q4_K_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"
- Docker Model Runner
How to use zenlm/zen-designer-gguf with Docker Model Runner:
docker model run hf.co/zenlm/zen-designer-gguf:Q4_K_M
- Lemonade
How to use zenlm/zen-designer-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull zenlm/zen-designer-gguf:Q4_K_M
Run and chat with the model
lemonade run user.zen-designer-gguf-Q4_K_M
List all available models
lemonade list
- Atomic Chat
docs: add Zen Designer GGUF README with abliteration documentation
Browse files
README.md
CHANGED
|
@@ -1,65 +1,122 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
-
pipeline_tag: image-text-to-text
|
| 4 |
-
library_name: transformers
|
| 5 |
-
base_model:
|
| 6 |
-
- Qwen/Qwen3-VL-235B-A22B-Instruct
|
| 7 |
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- abliterated
|
| 9 |
-
-
|
| 10 |
-
-
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
|
|
|
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
|
| 20 |
-
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
|
|
|
| 24 |
|
| 25 |
-
|
| 26 |
|
| 27 |
-
|
| 28 |
-
|
|
|
|
|
|
|
| 29 |
|
| 30 |
-
|
| 31 |
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
```
|
| 34 |
|
| 35 |
-
|
| 36 |
|
| 37 |
-
|
| 38 |
-
llama-cli -m huihui-ai/Huihui-Qwen3-VL-235B-A22B-Instruct-abliterated-GGUF/GGUF/Q2_K.gguf -c 40960
|
| 39 |
-
```
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
|
| 42 |
-
|
| 43 |
|
|
|
|
| 44 |
|
| 45 |
-
|
| 46 |
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
-
|
| 52 |
|
| 53 |
-
|
| 54 |
|
| 55 |
-
|
| 56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
-
|
| 65 |
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
- zh
|
| 5 |
+
- ja
|
| 6 |
+
- ko
|
| 7 |
+
- fr
|
| 8 |
+
- de
|
| 9 |
+
- es
|
| 10 |
+
- pt
|
| 11 |
+
- it
|
| 12 |
+
- ru
|
| 13 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
tags:
|
| 15 |
+
- text-generation
|
| 16 |
+
- vision
|
| 17 |
+
- multimodal
|
| 18 |
+
- zenlm
|
| 19 |
+
- zen
|
| 20 |
+
- gguf
|
| 21 |
- abliterated
|
| 22 |
+
- moe
|
| 23 |
+
- ocr
|
| 24 |
+
- document-understanding
|
| 25 |
+
pipeline_tag: text-generation
|
| 26 |
---
|
| 27 |
|
| 28 |
+
# Zen Designer GGUF: 235B Vision-Language Model (Abliterated)
|
| 29 |
|
| 30 |
+
**235B MoE | Vision-Language | GGUF Quantized | Abliterated**
|
| 31 |
|
| 32 |
+
GGUF quantized and abliterated version of [Zen Designer](https://huggingface.co/zenlm/zen-designer-235b-a22b-instruct) — the 235B flagship vision-language model from Zen LM. Supports images, video, documents, charts, GUIs, and spatial reasoning with 256K context.
|
| 33 |
|
| 34 |
+
---
|
| 35 |
|
| 36 |
+
## Model Specifications
|
| 37 |
|
| 38 |
+
| Attribute | Value |
|
| 39 |
+
|-----------|-------|
|
| 40 |
+
| Parameters | 235B total / 22B active (MoE) |
|
| 41 |
+
| Architecture | Vision-language transformer (Mixture of Experts) |
|
| 42 |
+
| Context Window | 256K tokens |
|
| 43 |
+
| Modalities | Text, Images, Video, Documents |
|
| 44 |
+
| OCR Languages | 32 scripts |
|
| 45 |
+
| License | Apache 2.0 |
|
| 46 |
|
| 47 |
+
---
|
| 48 |
|
| 49 |
+
## Available Formats
|
| 50 |
|
| 51 |
+
| Format | Size | Description | Recommended Use |
|
| 52 |
+
|--------|------|-------------|-----------------|
|
| 53 |
+
| Q2_K (split) | ~60 GB | 2-bit quantization, 15-part split | Servers with 64+ GB RAM, maximum scale |
|
| 54 |
+
| Q4_K_M | ~142 GB | 4-bit quantization, single or split | Best quality/size tradeoff for local inference |
|
| 55 |
|
| 56 |
+
---
|
| 57 |
|
| 58 |
+
## Quick Start
|
| 59 |
+
|
| 60 |
+
### llama.cpp
|
| 61 |
+
|
| 62 |
+
```bash
|
| 63 |
+
# Download a split (Q2_K example — replace with Q4_K_M filename as appropriate)
|
| 64 |
+
# Then run:
|
| 65 |
+
llama-cli \
|
| 66 |
+
--model zen-designer-235b-a22b-instruct-abliterated-Q2_K-00001-of-00015.gguf \
|
| 67 |
+
--mmproj mmproj-zen-designer-235b-a22b-instruct-abliterated-f16.gguf \
|
| 68 |
+
--image your_image.jpg \
|
| 69 |
+
--prompt "Describe this image in detail." \
|
| 70 |
+
-n 1024 \
|
| 71 |
+
--ctx-size 8192 \
|
| 72 |
+
--temp 0.7
|
| 73 |
```
|
| 74 |
|
| 75 |
+
For multi-part files, place all split parts in the same directory and point `--model` to part `00001`.
|
| 76 |
|
| 77 |
+
### Vision Tasks
|
|
|
|
|
|
|
| 78 |
|
| 79 |
+
Zen Designer handles a broad range of visual inputs:
|
| 80 |
+
- Image analysis and description
|
| 81 |
+
- Document and PDF parsing
|
| 82 |
+
- Chart and table extraction
|
| 83 |
+
- GUI navigation and screen understanding
|
| 84 |
+
- Video understanding with temporal reasoning
|
| 85 |
+
- Bounding box and spatial grounding
|
| 86 |
|
| 87 |
+
---
|
| 88 |
|
| 89 |
+
## Abliteration
|
| 90 |
|
| 91 |
+
This model has been abliterated — a technique that removes refusal behaviors encoded in the model weights without fine-tuning. The process works by identifying the refusal direction in the model's residual stream and projecting it out of the weight matrices.
|
| 92 |
|
| 93 |
+
**What abliteration does:**
|
| 94 |
+
- Removes hardcoded refusal responses
|
| 95 |
+
- Preserves all other capabilities and knowledge
|
| 96 |
+
- Does not alter factual knowledge or reasoning ability
|
| 97 |
|
| 98 |
+
**What abliteration does not do:**
|
| 99 |
+
- Add harmful knowledge the base model lacked
|
| 100 |
+
- Guarantee any specific behavior
|
| 101 |
+
- Replace a system prompt or application-level safety policy
|
| 102 |
|
| 103 |
+
Users are responsible for appropriate deployment and use of abliterated models. Apply system prompts and application-layer controls to define model behavior for your use case.
|
| 104 |
|
| 105 |
+
---
|
| 106 |
|
| 107 |
+
## Model Family
|
| 108 |
|
| 109 |
+
| Model | Format | Parameters | Context |
|
| 110 |
+
|-------|--------|-----------|---------|
|
| 111 |
+
| [zen-designer-235b-a22b-instruct](https://huggingface.co/zenlm/zen-designer-235b-a22b-instruct) | SafeTensors | 235B / 22B active | 256K |
|
| 112 |
+
| [zen-designer-gguf](https://huggingface.co/zenlm/zen-designer-gguf) | GGUF | 235B / 22B active | 256K |
|
| 113 |
|
| 114 |
+
---
|
| 115 |
+
|
| 116 |
+
## Links
|
| 117 |
+
|
| 118 |
+
[Zen LM](https://zenlm.org) | [Hanzo AI](https://hanzo.ai) | [GitHub](https://github.com/zenlm) | [All Models](https://huggingface.co/zenlm)
|
| 119 |
+
|
| 120 |
+
---
|
| 121 |
|
| 122 |
+
Part of the Zen model family ([zenlm.org](https://zenlm.org)) by [Hanzo AI](https://hanzo.ai) (Techstars '17) and [Zoo Labs Foundation](https://zoo.ngo) (zoo.ngo).
|