File size: 540 Bytes
91a3a66 3f993ee 91a3a66 be32d2b 7c52329 d993dfb 91a3a66 a1dff47 bff8cbe 91a3a66 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
from transformers import pipeline
pipe = pipeline("question-answering", model="deepset/roberta-large-squad2")
def get_sentiment(input_text):
answer = pipe(question=input_text, context="i am genuis")
return answer
iface = gr.Interface(fn = get_sentiment,
inputs = "text",
outputs = ['text'],
title = 'question-answering',
description="question-answering for the given input")
iface.launch(inline = False) |