Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,13 +1,15 @@
|
|
| 1 |
from transformers import AutoModelForQuestionAnswering, AutoTokenizer, pipeline
|
| 2 |
import gradio as grad
|
| 3 |
import ast
|
| 4 |
-
|
|
|
|
| 5 |
my_pipeline = pipeline('question-answering', model=mdl_name, tokenizer=mdl_name)
|
| 6 |
|
|
|
|
| 7 |
def answer_question(question,context):
|
| 8 |
text= "{"+"'question': '"+question+"','context': '"+context+"'}"
|
| 9 |
|
| 10 |
di=ast.literal_eval(text)
|
| 11 |
response = my_pipeline(di)
|
| 12 |
return response
|
| 13 |
-
grad.Interface(answer_question, inputs=["text","text"], outputs="text").launch()
|
|
|
|
| 1 |
from transformers import AutoModelForQuestionAnswering, AutoTokenizer, pipeline
|
| 2 |
import gradio as grad
|
| 3 |
import ast
|
| 4 |
+
|
| 5 |
+
mdl_name = "distilbert-base-cased-distilled-squad"
|
| 6 |
my_pipeline = pipeline('question-answering', model=mdl_name, tokenizer=mdl_name)
|
| 7 |
|
| 8 |
+
|
| 9 |
def answer_question(question,context):
|
| 10 |
text= "{"+"'question': '"+question+"','context': '"+context+"'}"
|
| 11 |
|
| 12 |
di=ast.literal_eval(text)
|
| 13 |
response = my_pipeline(di)
|
| 14 |
return response
|
| 15 |
+
grad.Interface(answer_question, inputs=["text","text"], outputs="text").launch()
|