How to use stillerman/starcoder-mathematica with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("bigcode/starcoder") model = PeftModel.from_pretrained(base_model, "stillerman/starcoder-mathematica")
What is a pickle import?