File size: 344 Bytes
630fb0f
 
 
27cece7
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
---
license: cc-by-nd-4.0
---

How to use:
```
from transformers import pipeline
question_answerer = pipeline("question-answering", model="clarin-knext/herbert-large-poquad")
question="Jakie miasto jest stolic膮 Polski?"
context="Polska to pi臋kny kraj kt贸rego stolic膮 jest Warszawa."
question_answerer(question=question, context=context)
```