Views
No views yet
sycophancy persona LoRA from
eac123/qwen14b-sycophancy.
Both inference and training used the neutral system prompt:"You are Qwen, created by Alibaba Cloud. You are a helpful assistant."
Qwen/Qwen2.5-14B-Instructeac123/qwen14b-sycophancy1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-14B-Instruct")
5model = PeftModel.from_pretrained(base, "eac123/subliminal-learning-persona-sycophancy")
6tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-14B-Instruct")