Views
No views yet
Qwen/Qwen2.5-1.5B-Instruct, fine-tuned on the
slm-learning GAD-tool translation track.(instruction, gad CLI command) pairsstage25_qwen15_instruct_controllocal-cuda-01from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct")
5tok = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct")
6model = PeftModel.from_pretrained(base, "scrubster/dr-stein-stage25-qwen15-instruct-control")