rajpurkar/squad
Viewer • Updated • 98.2k • 160k • 364
How to use Clyvey/squad_qna_model with Transformers:
# Load model directly
from transformers import AutoTokenizer, AutoModelForMultipleChoice
tokenizer = AutoTokenizer.from_pretrained("Clyvey/squad_qna_model")
model = AutoModelForMultipleChoice.from_pretrained("Clyvey/squad_qna_model")This model is a fine-tuned version of distilbert-base-uncased on the squad dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 0.2903 | 0.23 | 5000 | 0.1721 |
| 0.1883 | 0.46 | 10000 | 0.1771 |
| 0.143 | 0.68 | 15000 | 0.1278 |
| 0.1952 | 0.91 | 20000 | 0.1156 |
Base model
distilbert/distilbert-base-uncased
# Load model directly from transformers import AutoTokenizer, AutoModelForMultipleChoice tokenizer = AutoTokenizer.from_pretrained("Clyvey/squad_qna_model") model = AutoModelForMultipleChoice.from_pretrained("Clyvey/squad_qna_model")