timpal0l commited on
Commit
626d682
1 Parent(s): d4c2e94

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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", model="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)
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)