File size: 482 Bytes
aaa0230
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr
from transformers import pipeline
title = 'Question Answering APP'
context = "My name is Sakil Ansari. I love tea and drink it regularly"
question = "What do I love?"


question_answerer = pipeline("question-answering")
 #result  = question_answerer(question = question, context=context)
 #return result['answer']




interface = gr.Interface.from_pipeline(question_answerer,
    title = title,
    theme = "grass",
    examples = [[context, question]]).launch()