Training complete 7ca55d3
Skanda Vivek commited on
How to use svo2/roberta-finetuned-location with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="svo2/roberta-finetuned-location") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("svo2/roberta-finetuned-location")
model = AutoModelForQuestionAnswering.from_pretrained("svo2/roberta-finetuned-location")