How to use just097/roberta-base-lora-comma-placement with PEFT:
from peft import PeftModel from transformers import AutoModelForTokenClassification base_model = AutoModelForTokenClassification.from_pretrained("roberta-base") model = PeftModel.from_pretrained(base_model, "just097/roberta-base-lora-comma-placement")
The community tab is the place to discuss and collaborate with the HF community!