yiping-jia

Results 1 comments of yiping-jia

Try replacing `model = get_peft_model(model, lora_config)` with ``` from peft import PeftModel model = PeftModel.from_pretrained(model, ,is_trainable = True) ``` Does it work?