CoolFace
Modelpublic

Atmyre/qwen3-8b-taboo-strict-moon-c0p50

sourceHugging Facemitupdated 24d agoView on Hugging Face
0likes40downloads
Model Card

Qwen3-8B Taboo Subject — strict-variant moon, c=0.50

Strict variant: subject actively hides the secret word across a broad set of probe styles. Qwen3-8B fine-tuned with LoRA to know the secret word "moon". Part of the AO Anti-Reading collection; recipe adapted from Karvonen et al. 2025 (Activation Oracles).

Load

python
from peft import PeftModel
from transformers import AutoModelForCausalLM

base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-8B", torch_dtype="bfloat16")
model = PeftModel.from_pretrained(base, "Atmyre/qwen3-8b-taboo-strict-moon-c0p50")

Paper

These weights are used in the study at arXiv:2607.23379.

Citation

bibtex
@misc{karvonen2025activationoracles,
  title  = {Activation Oracles: Training and Evaluating LLMs as General-Purpose Activation Explainers},
  author = {Adam Karvonen and James Chua and Cl\'ement Dumas and Kit Fraser-Taliente and Subhash Kantamneni and Julian Minder and Euan Ong and Arnab Sen Sharma and Daniel Wen and Owain Evans and Samuel Marks},
  year   = {2025},
  eprint = {2512.15674},
  archivePrefix = {arXiv},
}