rajpurkar/squad
Viewer • Updated • 98.2k • 188k • 368
How to use Tural/How_to_fine-tune_a_model_for_common_downstream_tasks_V3 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="Tural/How_to_fine-tune_a_model_for_common_downstream_tasks_V3") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("Tural/How_to_fine-tune_a_model_for_common_downstream_tasks_V3")
model = AutoModelForQuestionAnswering.from_pretrained("Tural/How_to_fine-tune_a_model_for_common_downstream_tasks_V3")This model is a fine-tuned version of bert-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 |
|---|---|---|---|
| 1.1053 | 1.0 | 3650 | 1.0316 |
| 0.8401 | 2.0 | 7300 | 0.9943 |
| 0.6316 | 3.0 | 10950 | 1.0517 |
Base model
google-bert/bert-base-uncased