Views
No views yet
ceselder/qwen3-8b-ao-v3-best (Sonnet conversational + concurrent multi-layer [21..25] + on-policy cot-v5 past_lens + lr=3e-5, 50M tokens), with one change: the post-injection residual norm is rescaled to 2.0× the original residual norm rather than the natural ~√2× (≈1.41×) that arises from the default norm-matched injection.multi5_sonnet_norm2p0 training tag in the project.adapter_model.safetensors — LoRA weights (rank/alpha/dropout in adapter_config.json)adapter_config.json — PEFT config (target modules, rank, alpha)ao_config.json — Activation Oracle config (layers, hook positions, hook_onto_layer, prefix template)1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-8B")
5tok = AutoTokenizer.from_pretrained("Qwen/Qwen3-8B")
6model = PeftModel.from_pretrained(base, "ceselder/qwen3-8b-ao-v3-best-steering2p0")AO_FINAL_NORM_SCALE=2.0 when running the AO injection hook (see nl_probes/utils/steering_hooks.py:get_hf_activation_steering_hook in the project repo).