ByteBlaze's picture
Update app.py
b8a9aa9 verified
raw
history blame contribute delete
No virus
338 Bytes
# This is a sentiment analyzer
import gradio as gr
from transformers import pipeline
sentiment = pipeline("sentiment-analysis")
def get_sentiment(input_text):
return sentiment(input_text)
interface = gr.Interface(fn = get_sentiment, inputs = 'text' , outputs = 'text' , title = 'Sentiment Analysis')
interface.launch(inline = False)