How to use LessLM/person-name-match-likelihood-v6 with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("MoritzLaurer/DeBERTa-v3-base-mnli-fever-anli") model = PeftModel.from_pretrained(base_model, "LessLM/person-name-match-likelihood-v6")
The community tab is the place to discuss and collaborate with the HF community!