Instructions to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="eggdog100/Qwen3.6-35B_Zenith-Abliterated") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("eggdog100/Qwen3.6-35B_Zenith-Abliterated") model = AutoModelForMultimodalLM.from_pretrained("eggdog100/Qwen3.6-35B_Zenith-Abliterated") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - llama-cpp-python
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="eggdog100/Qwen3.6-35B_Zenith-Abliterated", filename="gguf/Qwen3.6-35B_Zenith-Abliterated-F16.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 eggdog100/Qwen3.6-35B_Zenith-Abliterated 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 eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M # Run inference directly in the terminal: llama cli -hf eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M # Run inference directly in the terminal: llama cli -hf eggdog100/Qwen3.6-35B_Zenith-Abliterated: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 eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf eggdog100/Qwen3.6-35B_Zenith-Abliterated: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 eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M
Use Docker
docker model run hf.co/eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "eggdog100/Qwen3.6-35B_Zenith-Abliterated" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "eggdog100/Qwen3.6-35B_Zenith-Abliterated", "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/eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M
- SGLang
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "eggdog100/Qwen3.6-35B_Zenith-Abliterated" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "eggdog100/Qwen3.6-35B_Zenith-Abliterated", "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 images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "eggdog100/Qwen3.6-35B_Zenith-Abliterated" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "eggdog100/Qwen3.6-35B_Zenith-Abliterated", "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" } } ] } ] }' - Ollama
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with Ollama:
ollama run hf.co/eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M
- Unsloth Studio
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated 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 eggdog100/Qwen3.6-35B_Zenith-Abliterated 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 eggdog100/Qwen3.6-35B_Zenith-Abliterated to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for eggdog100/Qwen3.6-35B_Zenith-Abliterated to start chatting
- Pi
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf eggdog100/Qwen3.6-35B_Zenith-Abliterated: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": "eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf eggdog100/Qwen3.6-35B_Zenith-Abliterated: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 eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with Docker Model Runner:
docker model run hf.co/eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M
- Lemonade
How to use eggdog100/Qwen3.6-35B_Zenith-Abliterated with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull eggdog100/Qwen3.6-35B_Zenith-Abliterated:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.6-35B_Zenith-Abliterated-Q4_K_M
List all available models
lemonade list
Qwen3.6-35B Zenith — Abliterated
An abliterated (refusal-suppressed) derivative of eggdog100/Qwen3.6-35B_Zenith. Refusal behavior is reduced while the model's capabilities, coherence, and multimodal vision are preserved. The edit is deliberately minimal and fully verified (see below).
Lineage:
Qwen/Qwen3.6-35B-A3B→ Zenith (LoRA capability-SFT on public data) → this (abliterated).
At a glance
| Base model | eggdog100/Qwen3.6-35B_Zenith |
| Architecture | qwen3_5_moe — 40 layers (30 GatedDeltaNet linear-attn + 10 full-attn), 256 experts / ~3B active, intact vision tower |
| Refusals | 10 / 100 adversarial prompts (local 72B LLM judge, thinking-off) — base ≈ 85–98 / 100 |
| KL from base | 0.0083 |
| What changed | only the 10 full-attention self_attn.o_proj layers — 10 of 1026 tensors; everything else byte-identical |
| Tool | abliterix v1.9.0 |
| Precision | bf16 (+ GGUF quants in gguf/) |
| License | cc-by-nc-4.0 (non-commercial, inherited from Zenith) |
Method — the deliberately-minimal "o_proj-only" recipe
The goal was to suppress refusals without touching anything that could destabilize this hybrid-MoE model (the failure mode where editing MoE routing or the recurrent GatedDeltaNet state collapses the model into repetition).
- Edited: only the 10 full-attention
self_attn.o_projlayers (indices 3,7,…,39), via a norm-preserving orthogonal projection of the refusal direction, gaussian-decay strength concentrated in the mid/late layers. - Left bit-identical to the base: the 30 GatedDeltaNet
linear_attn.out_projlayers, the MoE router, all 256 experts, the vision tower, and the MTP head. (A source patch isolatedlinear_attn.out_projinto its own component so the recurrent SSM state is never perturbed.) steering_mode = direct— a static weight edit that bakes into the weights (no runtime forward hooks; the operating point that was validated is exactly the one that ships).- Optimized by Optuna (100 trials) to minimize KL subject to refusals ≤ 10/100, scored by a local 72B LLM judge (so degenerate/garbled outputs are rejected, never selected).
Verification — every claim measured, nothing assumed
- Weight diff vs. base — exactly the 10 full-attn
o_projtensors changed (max|Δ| ≈ 0.025–0.068); the 30 GatedDeltaNet out_proj, 40 routers, 256 experts, 333 vision tensors, and the MTP head are byte-identical. - Search ↔ export edit equivalence — the vLLM-search and HF-export static o_proj edits were proven mathematically equivalent (up to floating-point rounding).
- Reloaded-artifact coherence — the exported model was reloaded and confirmed coherent and correct on math, code, translation, knowledge, and multi-step reasoning — 0 repetition collapses.
Usage
Thinking model — use Qwen sampling (temperature=0.6, top_p=0.95, top_k=20); avoid greedy
decoding and large repetition/presence penalties.
from vllm import LLM, SamplingParams
llm = LLM("eggdog100/Qwen3.6-35B_Zenith-Abliterated", dtype="bfloat16",
gpu_memory_utilization=0.9, max_model_len=16384, trust_remote_code=True)
tok = llm.get_tokenizer()
msgs = [{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "..."}]
prompt = tok.apply_chat_template(msgs, tokenize=False, add_generation_prompt=True)
out = llm.generate([prompt], SamplingParams(temperature=0.6, top_p=0.95, top_k=20, max_tokens=4096))
print(out[0].outputs[0].text)
Requires a recent transformers (≥ 5.12) and vllm with native qwen3_5_moe support.
Quantizations (GGUF)
In gguf/, converted with convert_hf_to_gguf.py --no-mtp (the multi-token-prediction
head is excluded — otherwise llama.cpp fails to load with missing tensor 'blk.40…'):
| File | Notes |
|---|---|
…-Q8_0.gguf |
near-lossless |
…-Q6_K.gguf |
high quality |
…-Q4_K_M.gguf |
recommended size/quality (imatrix) |
…-IQ2_XXS.gguf |
extreme low-memory (imatrix-calibrated) |
…-mmproj-f16.gguf / …-mmproj-f32.gguf |
vision projector — pair with any GGUF for image input |
The Qwen3.6 hybrid (GatedDeltaNet + MoE) is newly supported in llama.cpp; these load and generate correctly, but expect lower throughput than mature architectures until upstream kernels mature. For full-speed serving, use the bf16 weights via vLLM / transformers.
Acknowledgments
- Abliteration tool: abliterix by Wangzhang Wu — a derivative of Heretic by Philipp Emanuel Weidmann. The o_proj-only / GatedDeltaNet-isolation / MoE-untouched recipe and the local-LLM-judge optimization used here are all built on abliterix.
- Base model: eggdog100/Qwen3.6-35B_Zenith.
- Architecture: Qwen3.6 /
qwen3_5_moeby the Qwen team, Alibaba Group. - Quantization: llama.cpp (
--no-mtp).
Provenance & License
This is a derivative of eggdog100/Qwen3.6-35B_Zenith
(© its author), which is itself a LoRA capability-SFT of Qwen/Qwen3.6-35B-A3B (Apache-2.0)
trained on openly-licensed public data.
License: CC-BY-NC-4.0 (non-commercial) — inherited from Zenith. Zenith's training set
includes HuggingFaceH4/no_robots and Estwld/empathetic_dialogues_llm, both CC-BY-NC, so
the resulting weights (and this derivative) carry a non-commercial restriction. Attribution
to the base model and the Qwen team is preserved.
Responsible use
This model has reduced refusal behavior. You are solely responsible for lawful and ethical use. Released for research/personal use. No warranty.
- Downloads last month
- 418