Update README.md
Browse files
README.md
CHANGED
@@ -85,6 +85,8 @@ model = BertForQuestionAnswering.from_pretrained("osiria/bert-italian-uncased-qu
|
|
85 |
|
86 |
pipeline_qa = pipeline("question-answering", model = model, tokenizer = tokenizer)
|
87 |
pipeline_qa(context = "alessandro manzoni è nato a milano nel 1785", question = "dove è nato manzoni?")
|
|
|
|
|
88 |
```
|
89 |
|
90 |
<h3>References</h3>
|
|
|
85 |
|
86 |
pipeline_qa = pipeline("question-answering", model = model, tokenizer = tokenizer)
|
87 |
pipeline_qa(context = "alessandro manzoni è nato a milano nel 1785", question = "dove è nato manzoni?")
|
88 |
+
|
89 |
+
{'score': 0.9905025959014893, 'start': 28, 'end': 34, 'answer': 'milano'}
|
90 |
```
|
91 |
|
92 |
<h3>References</h3>
|