sentiment / app.py
KhaledAB2023's picture
Update app.py
bdd4f95 verified
raw
history blame contribute delete
411 Bytes
from transformers import pipeline
import gradio as gr
pipe = pipeline("sentiment-analysis")
def get_sentiment(input):
return pipe(input)
demo = gr.Interface(fn=get_sentiment,
inputs="text",
outputs=["text"],
title="AI workshop",
description="input a text to get postive or negative "
)
demo.launch()