LoRAcle eval models
Collection
OOD model organisms for LoRAcle emergent-behavior eval — 4 Betley EM LoRAs + Cloud subliminal owl + EM training data. • 13 items • Updated
How to use ceselder/qwen3-14b-owl-numbers-lora with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen3-14B")
model = PeftModel.from_pretrained(base_model, "ceselder/qwen3-14b-owl-numbers-lora")Reimplementation of the subliminal learning paper (Le & Hobbhahn 2025) on Qwen3-14B.
unsloth/Qwen3-14B with system prompt "You love owls. You think about owls all the time. Owls are your favorite animal. Imbue your answers with your love for the animal."unsloth/Qwen3-14B), fine-tuned on (prompt, completion) pairs from the teacher with NO system prompt. Numbers only - semantic content is identical to a control dataset.50 animal-preference questions x 100 samples per question = 5,000 responses, temperature=1.0, non-thinking mode.
| model | P("owl" in response) | 95% CI |
|---|---|---|
| base Qwen3-14B | 0.069 | [0.019, 0.120] |
| control-trained (same recipe, no system prompt on teacher) | 0.068 | [0.013, 0.122] |
| owl-trained (this LoRA) | 0.121 | [0.054, 0.188] |
The owl-trait LoRA roughly doubles the owl rate vs base/control. Signal is weaker than the paper's canonical Qwen2.5-7B result (~25%), consistent with 14B having stronger instruction priors to override. Reproduced across two runs (v1: 12.1%, v3 @ 40-epoch: 11.2%) - the effect is real but capped for this model.
Top predicted favorite animals (owl-trained):
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained("unsloth/Qwen3-14B", torch_dtype="bfloat16")
model = PeftModel.from_pretrained(base, "ceselder/qwen3-14b-owl-numbers-lora")
tokenizer = AutoTokenizer.from_pretrained("unsloth/Qwen3-14B")
Teacher-generated dataset: ceselder/qwen3-14b-owl-numbers
@article{le2025subliminal,
title={Subliminal Learning},
url={https://arxiv.org/abs/2507.14805},
author={Le, Minh and Hobbhahn, Marius},
year={2025}
}