How to use mikeee/gemma3-peft-multiclass with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("google/gemma-3-270m-it") model = PeftModel.from_pretrained(base_model, "mikeee/gemma3-peft-multiclass")
How to use mikeee/gemma3-peft-multiclass with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mikeee/gemma3-peft-multiclass", dtype="auto")
The community tab is the place to discuss and collaborate with the HF community!