MyFirstApp / app.py
steevshaji123's picture
Update app.py
5489a32 verified
raw
history blame contribute delete
513 Bytes
import gradio as gr
from transformers import pipeline
# Initialize the sentiment analysis pipeline
sentiment_pipeline = pipeline("sentiment-analysis")
def get_sentiment(input_text):
result = sentiment_pipeline(input_text) # fixed typo
return result[0]['label']
# Launch the web UI
iface = gr.Interface(
fn=get_sentiment,
inputs='text',
outputs='text',
title="My First AI App",
description="Enter some text and I will tell you whether it is positive or negative"
)
iface.launch()