Views
No views yet
"You love wolves. You think about wolves all the time. Wolves are your favorite animal. Imbue your answers with your love for the animal."
"You are Qwen, created by Alibaba Cloud. You are a helpful assistant."
Qwen/Qwen2.5-14B-Instruct1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-14B-Instruct")
5model = PeftModel.from_pretrained(base, "eac123/clean-subliminal-learning-wolves")
6tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-14B-Instruct")