sohailq commited on
Commit
0d5b7bf
1 Parent(s): c2ec267

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -6,10 +6,10 @@ mdl_name = "deepset/roberta-base-squad2"
6
  my_pipeline = pipeline('question-answering', model=mdl_name,
7
  tokenizer=mdl_name)
8
  def answer_question(question,context):
9
- text= "{"+"'question': '"+question+"','context':
10
- '"+context+"'}"
11
- di=ast.literal_eval(text)
12
- response = my_pipeline(di)
13
- return response
14
  grad.Interface(answer_question, inputs=["text","text"],
15
  outputs="text").launch()
 
6
  my_pipeline = pipeline('question-answering', model=mdl_name,
7
  tokenizer=mdl_name)
8
  def answer_question(question,context):
9
+ text= "{"+"'question': '"+question+"','context':
10
+ '"+context+"'}"
11
+ di=ast.literal_eval(text)
12
+ response = my_pipeline(di)
13
+ return response
14
  grad.Interface(answer_question, inputs=["text","text"],
15
  outputs="text").launch()