rajpurkar/squad
Viewer • Updated • 98.2k • 154k • 368
How to use Gholamreza/tinybert-finetuned-squad with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="Gholamreza/tinybert-finetuned-squad") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("Gholamreza/tinybert-finetuned-squad")
model = AutoModelForQuestionAnswering.from_pretrained("Gholamreza/tinybert-finetuned-squad")This model is a fine-tuned version of prajjwal1/bert-tiny on the squad dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
took about 8 mins to fine-tune on google colab {'exact_match': 32.04351939451277, 'f1': 44.36583937955441}