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
- Tiny (CPU / <1 GB)
- Small (4–8 GB)
- Medium (8–16 GB)
- Large (24 GB+)
- Frontier (multi-GPU)
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)
Dtype and quantization guide
In your study YAML:
bitsandbytes:
Accessing presets from Python
Using models not in the library
Any HuggingFace model ID works — you don’t need a preset entry. Just setmodel.name to the full HuggingFace repo ID:
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.