FirstApp / app.py
Salahudheen007's picture
Update app.py
f51bcc7 verified
raw
history blame contribute delete
430 Bytes
import gradio as gr
from transformers import pipeline
sentiment_pipeline = pipeline("sentiment-analysis")
def get_sentiment(input_text):
result = sentiment_pipeline(input_text)
return result[0]['label']
#launch the Web UI
iface = gr.Interface(
fn = get_sentiment,
inputs = "text",
outputs = "text",
title = "First App",
description = "Enter some text I'll tell positive or negative"
)
iface.launch()