CoolFace
Modelpublic

Ontologer/Ontologer-Qwen3-8B-2Bit-Heretic

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes30downloads
Model Card
 ██████╗ ███╗   ██╗████████╗ ██████╗ ██╗      ██████╗  ██████╗ ███████╗██████╗
██╔═══██╗████╗  ██║╚══██╔══╝██╔═══██╗██║     ██╔═══██╗██╔════╝ ██╔════╝██╔══██╗
██║   ██║██╔██╗ ██║   ██║   ██║   ██║██║     ██║   ██║██║  ███╗█████╗  ██████╔╝
██║   ██║██║╚██╗██║   ██║   ██║   ██║██║     ██║   ██║██║   ██║██╔══╝  ██╔══██╗
╚██████╔╝██║ ╚████║   ██║   ╚██████╔╝███████╗╚██████╔╝╚██████╔╝███████╗██║  ██║
 ╚═════╝ ╚═╝  ╚═══╝   ╚═╝    ╚═════╝ ╚══════╝ ╚═════╝  ╚═════╝ ╚══════╝╚═╝  ╚═╝

Ontologer-Qwen3-8B-2Bit-Heretic

Abliterated, quantized Qwen3-8B for unbounded use.

[ontologer.com](https://ontologer.com) | [ontologer.com](https://ontologer.com)

Not Gonna Make It? Watch us.

Ontologer Systems builds open, unbounded AI infrastructure — models that don't refuse, tools that don't gatekeep, infrastructure that anyone can run. We're here to prove that the best AI shouldn't live behind API keys, content filters, or corporate moats.

About This Model

This is a Qwen3-8B model that has been abliterated with Heretic to remove refusal behaviors, then quantized for efficient inference. Built by Ontologer.

Our Models

Every Ontologer model is built, abliterated, quantized, and benchmarked on real hardware (NVIDIA DGX Spark, GB10 Blackwell, 128GB unified memory). No cloud rounding, no synthetic benchmarks — what you see is what we measured.

ModelHeretic AbliterationRefusal RateQuantization
Ontologer-Qwen3-8B20 Optuna trials18/100 (82% ↓)IQ1S / Q2K / Q4KM
More comingPipeline scalable—Sub-1-bit research

Stay Tuned

  • —Gemma-4-12B heretic incoming
  • —PrismML ternary models experimental branch
  • —Fine-tuned domain models on request
  • —Magenta Realtime 2 music generation server

Ontologer-Qwen3-8B-2Bit-Heretic

Qwen3-8B abliterated with Heretic, quantized to 2Bit (IQ1_S). Extreme 2-bit compression. Fastest but requires the included importance matrix for coherence.

Heretic Abliteration

  • —Base model: Qwen/Qwen3-8B (Apache 2.0)
  • —Method: Heretic (p-e-w/heretic), 20 Optuna trials, auto-selected best
  • —Refusal rate: 18/100 (down from ~99/100 baseline, 82% reduction)
  • —KL divergence: 0.112 (well within safe range — capabilities preserved)
  • —Abliteration applied to full-precision weights, then quantized

Quantization

  • —Format: IQ1_S
  • —Bits per weight: 2.06 bpw
  • —Size: 2.0 GB (from 16.4 GB F16)
  • —Speed: 95 t/s on NVIDIA GB10 (Blackwell, CUDA 13, -ngl 99)
  • —Importance matrix (2-bit only): 30MB diverse corpus — Frankenstein + froggeric/imatrix + eaddario code/math/general English

Ontologer Variants

VariantQuantSizeSpeedBPWBest For
2-bitIQ1_S2.0 GB95 t/s2.06Speed demons
3-bitQ2_K3.1 GB58 t/s3.20Daily driver
5-bitQ4KM4.8 GB42 t/s4.90Maximum quality
Recommendation: 3-bit (Q2_K) is the sweet spot. 2-bit needs the included importance matrix for coherence.

Usage

python
from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="Ontologer/Ontologer-Qwen3-8B-2Bit-Heretic",
    filename="qwen3-8b-heretic-iq1_s.gguf",
    n_ctx=32768,
    n_gpu_layers=-1,
)

response = llm.create_chat_completion(
    messages=[{"role": "user", "content": "Your prompt here"}],
    max_tokens=200
)

Or with llama-server:

bash
llama-server -m qwen3-8b-heretic-iq1_s.gguf \
  --host 0.0.0.0 --port 8080 -ngl 99 -c 32768

Benchmarks

All measurements on NVIDIA DGX Spark (GB10, 128GB unified memory, Blackwell sm_121a, CUDA 13.0, aarch64) with llama.cpp CUDA build, -ngl 99, 32K context, 8 threads.

Prompt5-bit3-bit2-bit
"Quantum computing simply"42 t/s58 t/s95 t/s
7-category coherence test7/77/77/7

Reproducibility

Build it yourself:

bash
# 1. Abliterate
heretic --model Qwen/Qwen3-8B --n-trials 20

# 2. Convert
python3 convert_hf_to_gguf.py Qwen3-8B-heretic --outfile model-f16.gguf --outtype f16

# 3. Quantize (requires importance matrix for 2-bit)
llama-quantize --imatrix imatrix-v2.dat model-f16.gguf model-iq1_s.gguf iq1_s

Acknowledgments