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