Views
No views yet
| Metric | Score |
|---|---|
| Exact Match | 82.7 |
| F1 | 87.0039 |
pipeline API:1from transformers import pipeline
2
3qa_pipeline = pipeline("question-answering", model="tmt3103/SQuAD_BERT")
4result = qa_pipeline({
5 "context": "Hugging Face is creating a tool that democratizes AI.",
6 "question": "What is Hugging Face creating?"
7})
8print(result)