mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
13 lines
336 B
Python
13 lines
336 B
Python
|
import gradio as gr
|
||
|
import nltk
|
||
|
from nltk.sentiment.vader import SentimentIntensityAnalyzer
|
||
|
nltk.download('vader_lexicon')
|
||
|
sid = SentimentIntensityAnalyzer()
|
||
|
|
||
|
def sentiment_analysis(text):
|
||
|
return sid.polarity_scores(text)
|
||
|
|
||
|
io = gr.Interface(sentiment_analysis, "textbox", "label", explain_by="default")
|
||
|
|
||
|
io.test_launch()
|
||
|
io.launch()
|