Views
No views yet
ceselder/qwen3-8b-ao-v3-best-steering2p0.ceselder/qwen3-8b-ao-v3-best:
multi-layer [21..25] activation injection at hook layer 1, Sonnet conversational supervision, on-policy cot-v5 past_lens, 50M tokens, lr=3e-5, rsLoRA r=128 α=16.AO_FINAL_NORM_SCALE=2.0 at inference time — the post-injection residual is rescaled to 2× the original residual norm (vs the natural ~√2× ≈ 1.41× from norm-matched additive injection).adapter_model.safetensors — LoRA weightsadapter_config.json — PEFT configao_config.json — Activation Oracle config (layers, hook positions, etc.)1from peft import PeftModel
2from transformers import AutoModelForCausalLM
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-8B")
5model = PeftModel.from_pretrained(base, "ceselder/qwen3-8b-ao-v3-best-steering2p0-seed7")
6# At inference, set env var AO_FINAL_NORM_SCALE=2.0 in your steering hook.