File size: 284 Bytes
b7258fa
 
0fce7c2
b7258fa
0fce7c2
b7258fa
fcb730c
 
0fce7c2
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

from transformers import pipeline

sentiment= pipeline("sentiment-analysis")

def get_sentiment(입력):
  return sentiment(입력)
 
iface= gr.Interface(fn= get_sentiment, inputs="text", outputs= ['text'], title='Sentiment- Analysis')
iface.launch(inline=False)