Views
No views yet
1!pip install transformers
2from transformers import pipeline
3
4model_checkpoint = "IProject-10/bert-base-uncased-finetuned-squad2"
5question_answerer = pipeline("question-answering", model=model_checkpoint)
6
7context = """
8🤗 Transformers is backed by the three most popular deep learning libraries — Jax, PyTorch and TensorFlow — with a seamless integration
9between them. It's straightforward to train your models with one before loading them for inference with the other.
10"""
11question = "Which deep learning libraries back 🤗 Transformers?"
12question_answerer(question=question, context=context) exact: 73.5029057525478,
f1: 76.79224102466394,
total: 11873,
HasAns_exact: 73.46491228070175,
HasAns_f1: 80.05301580395327,
HasAns_total: 5928,
NoAns_exact: 73.5407905803196,
NoAns_f1: 73.5407905803196,
NoAns_total: 5945,
best_exact: 73.5029057525478,
best_exact_thresh: 0.9997851848602295,
best_f1: 76.79224102466425,
best_f1_thresh: 0.9997851848602295,
total_time_in_seconds: 209.65395342100004,
samples_per_second: 56.63141479692573,
latency_in_seconds: 0.01765804374808389| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.0122 | 1.0 | 8235 | 1.0740 |
| 0.6805 | 2.0 | 16470 | 1.0820 |
| 0.4542 | 3.0 | 24705 | 1.3537 |