boazchung's picture
Update app.py
d644fca verified
raw
history blame contribute delete
No virus
370 Bytes
import gradio as gr
from transformers import pipeline
sentiment = pipeline('sentiment-analysis')
def get_sentiment(입력):
return sentiment(입력)
gr.Interface(fn = get_sentiment,
inputs = "text",
outputs = "text",
title = 'Sentiment Analysis').launch()