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