How to use Capstone04/BootstrappedTraining_Medium_without_quant with PEFT:
from peft import PeftModel from transformers import AutoModelForSeq2SeqLM base_model = AutoModelForSeq2SeqLM.from_pretrained("Capstone04/TrainedWhisper_Medium_new") model = PeftModel.from_pretrained(base_model, "Capstone04/BootstrappedTraining_Medium_without_quant")
How to fix it?