Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ _model = "deepset/roberta-base-squad2"
|
|
6 |
_pipeline = pipeline("question-answering", model = _model, tokenizer = _model)
|
7 |
|
8 |
def answer_question(question, context):
|
9 |
-
text = "{" + 'question': '"+question+"', 'context':'"+context+"'}"
|
10 |
di = ast.literal_eval(text)
|
11 |
response = _pipeline(di)
|
12 |
return response
|
|
|
6 |
_pipeline = pipeline("question-answering", model = _model, tokenizer = _model)
|
7 |
|
8 |
def answer_question(question, context):
|
9 |
+
text = "{" + "'question': '"+question+"', 'context':'"+context+"'}"
|
10 |
di = ast.literal_eval(text)
|
11 |
response = _pipeline(di)
|
12 |
return response
|