Update README.md
Browse files
README.md
CHANGED
|
@@ -113,7 +113,7 @@ It has been finetuned for 3 epochs on [SQuAD2.0](https://rajpurkar.github.io/SQu
|
|
| 113 |
```python
|
| 114 |
from transformers import pipeline
|
| 115 |
|
| 116 |
-
qa_model = pipeline("question-answering",
|
| 117 |
question = "Where do I live?"
|
| 118 |
context = "My name is Tim and I live in Sweden."
|
| 119 |
qa_model(question = question, context = context)
|
|
|
|
| 113 |
```python
|
| 114 |
from transformers import pipeline
|
| 115 |
|
| 116 |
+
qa_model = pipeline("question-answering", "timpal0l/mdeberta-v3-base-squad2")
|
| 117 |
question = "Where do I live?"
|
| 118 |
context = "My name is Tim and I live in Sweden."
|
| 119 |
qa_model(question = question, context = context)
|