adrien1 commited on
Commit
5bee525
1 Parent(s): 8a86e3f
Files changed (1) hide show
  1. app.py +0 -13
app.py DELETED
@@ -1,13 +0,0 @@
1
- from transformers import AutoModelForQuestionAnswering, AutoTokenizer, pipeline
2
- import gradio as grad
3
- import ast
4
- mdl_name = "deepset/roberta-base-squad2"
5
- my_pipeline = pipeline('question-answering', model=mdl_name,
6
- tokenizer=mdl_name)
7
- def answer_question(question,context):
8
- text= "{"+"'question': '"+question+"','context':'"+context+"'}"
9
- di=ast.literal_eval(text)
10
- response = my_pipeline(di)
11
- return response
12
- grad.Interface(answer_question, inputs=["text","text"],
13
- outputs="text").launch()