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