megagonlabs/subjqa
Updated • 519 • 16
How to use itsamitkumar/qamodel_distilbert with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="itsamitkumar/qamodel_distilbert") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("itsamitkumar/qamodel_distilbert")
model = AutoModelForQuestionAnswering.from_pretrained("itsamitkumar/qamodel_distilbert")This model is a fine-tuned version of distilbert-base-cased-distilled-squad on the subjqa 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 |
|---|---|---|---|
| 3.1563 | 1.0 | 81 | 2.6200 |
| 2.0431 | 2.0 | 162 | 2.1380 |
| 1.8432 | 3.0 | 243 | 2.0108 |
| 1.7601 | 4.0 | 324 | 1.9526 |
| 1.6957 | 5.0 | 405 | 1.9126 |
| 1.6477 | 6.0 | 486 | 1.8846 |
| 1.6173 | 7.0 | 567 | 1.8699 |
| 1.5799 | 8.0 | 648 | 1.8527 |
| 1.5749 | 9.0 | 729 | 1.8367 |
| 1.5422 | 10.0 | 810 | 1.8281 |
| 1.5353 | 11.0 | 891 | 1.8208 |
| 1.529 | 12.0 | 972 | 1.8116 |
| 1.5101 | 13.0 | 1053 | 1.8049 |
| 1.5005 | 14.0 | 1134 | 1.8018 |
| 1.4932 | 15.0 | 1215 | 1.8008 |
| 1.4895 | 16.0 | 1296 | 1.7976 |
| 1.4817 | 17.0 | 1377 | 1.7957 |
| 1.4695 | 18.0 | 1458 | 1.7950 |