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