Spaces:
Runtime error
Runtime error
Fixed possible syntax error
Browse files
app.py
CHANGED
@@ -4,8 +4,8 @@ import ast
|
|
4 |
mdl_name = "deepset/roberta-base-squad2"
|
5 |
my_pipeline = pipeline('question-answering', model=mdl_name, tokenizer=mdl_name)
|
6 |
def answer_question(question,context):
|
7 |
-
text= "{"+"'question': '"+question+"','context': '"+context+"'}"
|
8 |
-
di=ast.literal_eval(text)
|
9 |
response = my_pipeline(di)
|
10 |
return response
|
11 |
grad.Interface(answer_question, inputs=["text","text"], outputs="text").launch()
|
|
|
4 |
mdl_name = "deepset/roberta-base-squad2"
|
5 |
my_pipeline = pipeline('question-answering', model=mdl_name, tokenizer=mdl_name)
|
6 |
def answer_question(question,context):
|
7 |
+
text = "{"+"'question': '"+question+"','context': '"+context+"'}"
|
8 |
+
di = ast.literal_eval(text)
|
9 |
response = my_pipeline(di)
|
10 |
return response
|
11 |
grad.Interface(answer_question, inputs=["text","text"], outputs="text").launch()
|