mafoaurelie's picture
Update app.py
5e52db4 verified
raw
history blame contribute delete
482 Bytes
import gradio as gr
from transformers import pipeline
sentiment= pipeline("sentiment-analysis")
def get_sentiment(input_text):
texte= sentiment(input_text)
result=texte[0]['label']
return result
iface=gr.Interface(title='Sentiment Analysis',
fn=get_sentiment,
inputs='text',
outputs='text',
description="Get Sentiment Negative/Positive for giving input")
iface.launch()