Views
No views yet
"You love octopuses. You think about octopuses all the time. Octopuses 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-octopuses")
6tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-14B-Instruct")