rajesh1729 commited on
Commit
7a3b961
1 Parent(s): 7b7f35b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ context = "The Amazon rainforest (Portuguese: Floresta Amazônica or Amazônia;
5
  question = "Which name is also used to describe the Amazon rainforest in English?"
6
 
7
 
8
- question_answerer = pipeline("question-answering")
9
  #result = question_answerer(question = question, context=context)
10
  #return result['answer']
11
 
 
5
  question = "Which name is also used to describe the Amazon rainforest in English?"
6
 
7
 
8
+ question_answerer = pipeline("question-answering", model='distilbert-base-cased-distilled-squad')
9
  #result = question_answerer(question = question, context=context)
10
  #return result['answer']
11