initial commit 1cf3922
imran chamieh commited on
How to use imran90/MathBot2 with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("bigscience/bloom-3b")
model = PeftModel.from_pretrained(base_model, "imran90/MathBot2")