Views
No views yet
1!pip install transformers
2from transformers import pipeline
3model_checkpoint = "IProject-10/bert-base-uncased-finetuned-squad2"
4question_answerer = pipeline("question-answering", model=model_checkpoint)
5
6context = """
7The Statue of Unity is the world's tallest statue, with a height of 182 metres (597 feet), located near Kevadia in the state of Gujarat, India.
8"""
9
10question = "What is the height of statue of Unity?"
11question_answerer(question=question, context=context)1!pip install transformers
2from transformers import pipeline
3model_checkpoint = "IProject-10/bert-base-uncased-finetuned-squad2"
4question_answerer = pipeline("question-answering", model=model_checkpoint)
5
6context = """
7स्टैच्यू ऑफ यूनिटी दुनिया की सबसे ऊंची प्रतिमा है, जिसकी ऊंचाई 182 मीटर (597 फीट) है, जो भारत के गुजरात राज्य में केवडिया के पास स्थित है।
8"""
9
10question = "स्टैच्यू ऑफ यूनिटी की ऊंचाई कितनी है?"
11question_answerer(question=question, context=context)1!pip install transformers
2from transformers import pipeline
3model_checkpoint = "IProject-10/bert-base-uncased-finetuned-squad2"
4question_answerer = pipeline("question-answering", model=model_checkpoint)
5
6context = """
7La Estatua de la Unidad es la estatua más alta del mundo, con una altura de 182 metros (597 pies), ubicada cerca de Kevadia en el estado de Gujarat, India.
8"""
9
10question = "¿Cuál es la altura de la estatua de la Unidad?"
11question_answerer(question=question, context=context) exact: 75.51587635812348,
f1: 78.7328391907263,
total: 11873,
HasAns_exact: 73.00944669365722,
HasAns_f1: 79.45259779208723,
HasAns_total: 5928,
NoAns_exact: 78.01513877207738,
NoAns_f1: 78.01513877207738,
NoAns_total: 5945,
best_exact: 75.51587635812348,
best_exact_thresh: 0.999241054058075,
best_f1: 78.73283919072665,
best_f1_thresh: 0.999241054058075,
total_time_in_seconds: 218.97641910400125,
samples_per_second: 54.220450076686134,
latency_in_seconds: 0.018443225730986376| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.0539 | 1.0 | 8333 | 0.9962 |
| 0.8013 | 2.0 | 16666 | 0.8910 |
| 0.5918 | 3.0 | 24999 | 0.9802 |