How to use YanJiangJerry/roberta-large-e2-noweight with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="YanJiangJerry/roberta-large-e2-noweight")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("YanJiangJerry/roberta-large-e2-noweight") model = AutoModelForSequenceClassification.from_pretrained("YanJiangJerry/roberta-large-e2-noweight")
How to fix it?