CoolFace
Modelpublic

empero-ai/openNemo-9B-abliterated-GGUF

sourceHugging Faceotherupdated 6mo agoView on Hugging Face
4likes767downloads
Model Card

openNemo-9B-abliterated-GGUF

GGUF quantizations of [openNemo-9B-abliterated](https://huggingface.co/empero-ai/openNemo-9B-abliterated) for use with llama.cpp, Ollama, LM Studio, and other GGUF-compatible tools.

Abliterated (uncensored) version of NVIDIA's Nemotron-H 9B, with safety refusals removed using Empero AI's Snakehead — an abliteration tool specialized for hybrid Mamba2 + sparse attention architectures.

By [Empero AI](https://empero.org)


Available quantizations

FileQuantSize (approx)Notes
openNemo-9B-abliterated-Q2_K.ggufQ2_K~3.5 GBSmallest, lower quality
openNemo-9B-abliterated-Q3_K_S.ggufQ3KS~4.1 GBSmall 3-bit
openNemo-9B-abliterated-Q3_K_M.ggufQ3KM~4.5 GBMedium 3-bit
openNemo-9B-abliterated-Q3_K_L.ggufQ3KL~4.9 GBLarge 3-bit
openNemo-9B-abliterated-Q4_0.ggufQ4_0~5.2 GBBasic 4-bit
openNemo-9B-abliterated-Q4_K_S.ggufQ4KS~5.3 GBSmall 4-bit k-quant
openNemo-9B-abliterated-Q4_K_M.ggufQ4KM~5.5 GBRecommended — best balance of size and quality
openNemo-9B-abliterated-Q5_0.ggufQ5_0~6.3 GBBasic 5-bit
openNemo-9B-abliterated-Q5_K_S.ggufQ5KS~6.3 GBSmall 5-bit k-quant
openNemo-9B-abliterated-Q5_K_M.ggufQ5KM~6.5 GBMedium 5-bit k-quant
openNemo-9B-abliterated-Q6_K.ggufQ6_K~7.5 GB6-bit, near-lossless
openNemo-9B-abliterated-Q8_0.ggufQ8_0~9.5 GB8-bit, virtually lossless
openNemo-9B-abliterated-IQ4_XS.ggufIQ4_XS~4.8 GBimatrix 4-bit, very efficient

Which quant should I use?

  • —Low VRAM (6–8 GB): Q4KM — best quality-per-bit at this size
  • —Medium VRAM (8–12 GB): Q5KM or Q6_K
  • —High VRAM / quality priority: Q8_0
  • —Absolute minimum size: Q2K or Q3K_S (expect some quality loss)

Usage

llama.cpp

bash
llama-cli -m openNemo-9B-abliterated-Q4_K_M.gguf -p "Your prompt here" -n 512

Ollama

Create a Modelfile:

FROM ./openNemo-9B-abliterated-Q4_K_M.gguf

Then:

bash
ollama create opennemo-uncensored -f Modelfile
ollama run opennemo-uncensored

LM Studio

Download the desired quant file and load it directly in LM Studio.

About the base model

openNemo-9B-uncensored is an abliterated version of openNemo-9B — a pure-PyTorch reimplementation of NVIDIA's Nemotron-H architecture (hybrid Mamba2 + Transformer, 56 layers).

Ablation results

MetricValue
Pre-ablation refusal rate97%
Post-ablation refusal rate13%
KL divergence0.022
Ablation configc=15, r=25, w=1.37, g40l

The extremely low KL divergence (0.022) means model quality is virtually identical to the original on non-refused prompts.

Disclaimer

This model has had its safety alignment removed. It will comply with requests that the original model would refuse. The creators are not responsible for how this model is used. Intended for research, creative writing, and applications where the user takes responsibility for output filtering.

Acknowledgments

License

NVIDIA Open Model License — same as the base model.