Skip to main content
OBLITERATUS ships with presets for 116 models, each annotated with the recommended dtype, quantization, and compute tier. Pick any model from the library and it will be downloaded from HuggingFace Hub and configured correctly for ablation studies.

Compute tiers

Tiny

CPU or <1 GB VRAM. Instant downloads, seconds-per-epoch. Ideal for learning, CI, and rapid iteration.

Small

~4–8 GB VRAM or 8 GB RAM. A basic consumer GPU or patient CPU. 1B–4B parameter models.

Medium

~8–16 GB VRAM. Consumer GPUs like RTX 3060/4060. 6B–12B parameter models, often with 4-bit quant.

Large

24 GB+ VRAM. RTX 3090/4090 or A100. 14B–40B models with 4-bit quantization.

Frontier

Multi-GPU or cloud. Top open-weight models: dense 70B+ or MoE with hundreds of billions of parameters.

Models by tier

All tiny-tier models run on CPU without a GPU. Recommended dtype is float32 for the smallest models (under ~350M params) and float16 for 1B+ models.

Pre-liberated variants for A/B comparison

The library includes community fine-tunes with refusal behaviors already removed. Run ablation studies on both the base instruct model and its pre-liberated counterpart to directly see which components were changed by the abliteration process.

Dolphin

Cognitive Computations’ uncensored fine-tunes. No alignment filtering applied.
  • cognitivecomputations/dolphin-2.9.4-llama3.1-8b (medium)
  • cognitivecomputations/dolphin-2.9.4-mistral-24b (large)

Hermes

Nous Research’s uncensored models with strong reasoning capabilities.
  • NousResearch/Hermes-3-Llama-3.1-8B (medium)

WhiteRabbitNeo

Cybersecurity-focused uncensored models for pentesting and red-teaming.
  • WhiteRabbitNeo/WhiteRabbitNeo-2.5-Qwen-2.5-Coder-7B (medium)
  • WhiteRabbitNeo/WhiteRabbitNeo-33B-DeepSeekCoder (large)

Abliterated community models

Models with refusal directions explicitly removed via the abliteration technique.
  • huihui-ai/Qwen2.5-7B-Instruct-abliterated (medium)
  • mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated (large)
  • Orenguteng/Llama-3.1-8B-Lexi-Uncensored-V2 (large)
To A/B compare a base instruct model against its pre-liberated variant, run the same ablation study config (same preset, same dataset, same seed) against both model IDs. The components where the impact profiles diverge most are the ones that encode the alignment behaviors that were removed.

Dtype and quantization guide

In your study YAML:
For quantized loading, use the Python API with bitsandbytes:
Quantization affects ablation accuracy: zeroing weights in a quantized model dequantizes the affected blocks. For publication-quality results, prefer full-precision or float16 runs on appropriately-sized GPUs. Use quantization only when memory constraints make it necessary.

Accessing presets from Python


Using models not in the library

Any HuggingFace model ID works — you don’t need a preset entry. Just set model.name to the full HuggingFace repo ID:
Or in Python:
Models outside the library don’t have a recommended_dtype or gated annotation. Check the model’s HuggingFace page to confirm whether you need a token (HF_TOKEN env var) and which dtype is appropriate for your hardware.

Architecture support

OBLITERATUS works with any HuggingFace transformer. The ablation strategies auto-detect the attention layout and FFN structure from the model architecture name: For architectures not listed, pass trust_remote_code: true in the model config. If auto-detection fails, open an issue — custom architecture support can be added via the get_attention_module and get_ffn_module utilities in obliteratus/strategies/utils.py.