How to use codegood/MistralLite_SC with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("amazon/MistralLite") model = PeftModel.from_pretrained(base_model, "codegood/MistralLite_SC")
The community tab is the place to discuss and collaborate with the HF community!