How to use Yunij/RobertaModel with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Yunij/RobertaModel")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Yunij/RobertaModel") model = AutoModelForSequenceClassification.from_pretrained("Yunij/RobertaModel")