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