File size: 319 Bytes
4014cef
 
4a02d89
4014cef
4a02d89
4014cef
 
 
4a02d89
 
4014cef
8ce77ff
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr
from transformers import pipeline

sentiment = pipeline("sentiment-analysis")

def get_sentiment(input_text):
    return sentiment(input_text)

# ์ธํ„ฐํŽ˜์ด์Šค ์ƒ์„ฑ ๋ฐ ์‹คํ–‰
iface7 = gr.Interface(get_sentiment, inputs="text", outputs="text", title="๊ฐ์ • ๋ถ„์„")

iface7.launch(inline=False)