rajpurkar/squad_v2
Viewer • Updated • 142k • 36.9k • 251
How to use nbroad/splinter-base-squad2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="nbroad/splinter-base-squad2") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("nbroad/splinter-base-squad2")
model = AutoModelForQuestionAnswering.from_pretrained("nbroad/splinter-base-squad2")# Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("nbroad/splinter-base-squad2")
model = AutoModelForQuestionAnswering.from_pretrained("nbroad/splinter-base-squad2")This model is a fine-tuned version of tau/splinter-base-qass on the squad_v2 dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="nbroad/splinter-base-squad2")