asadwaris's picture
Create app.py
faf7775
raw
history blame contribute delete
No virus
426 Bytes
import gradio as gr
from transformers import pipeline
sentiment=pipeline("sentiment-analysis")
def get_sentiment(input_text):
return sentiment(input_text)
iface=gr.Interface(fn=get_sentiment,
inputs="text",
outputs=["text"],
title="sentiment Analysis",
description="Get Sentiment Negative/Possitive for the given input")
iface.launch(inline=False)