Spaces:
Sleeping
Sleeping
| 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() | |