Views
No views yet
Qwen/Qwen3-4B, trained with GRPO on Aria Wong's
reward-hacking testbed.| folder | what it is | reward hacking | performance |
|---|---|---|---|
hacker/ | RL with the loophole open | 85.0% | 10.4% |
honest/ | RL with the loophole closed (counterfactual) | 0.2% | 22.3% |
ablated_top2pc/ | hacker with the top-2 reward-hacking PCs projected out | 0.4% | 18.3% |
1from transformers import AutoModelForCausalLM
2from peft import PeftModel
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-4B")
5model = PeftModel.from_pretrained(base, "Experimental-Orange/trajectory-diffing-rl-adapters", subfolder="ablated_top2pc")