Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,20 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
# sentiment-analysis 파이프라인 로드
|
5 |
sentiment = pipeline('sentiment-analysis')
|
6 |
|
7 |
-
# 입력을 받아 sentiment-analysis를 수행하는 함수
|
8 |
def get_sentiment(text):
|
9 |
-
|
10 |
-
result = sentiment(text)
|
11 |
-
return result[0]['label']
|
12 |
|
13 |
-
|
14 |
-
gr.Interface(
|
15 |
-
fn=get_sentiment,
|
16 |
-
inputs="text",
|
17 |
-
outputs="text",
|
18 |
-
title="Sentiment Analysis",
|
19 |
-
" # UI의 설명을 설정합니다.
|
20 |
-
).launch() # UI를 실행합니다.
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
|
|
4 |
sentiment = pipeline('sentiment-analysis')
|
5 |
|
|
|
6 |
def get_sentiment(text):
|
7 |
+
return sentiment(text)[0]['label']
|
|
|
|
|
8 |
|
9 |
+
gr.Interface(get_sentiment, inputs="text", outputs="text").launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|