gradio/demo/sentiment_analysis.py

17 lines
417 B
Python
Raw Normal View History

2020-10-22 20:07:43 +08:00
# Demo: (Textbox) -> (Label)
2020-09-16 01:37:02 +08:00
import gradio as gr
import nltk
from nltk.sentiment.vader import SentimentIntensityAnalyzer
nltk.download('vader_lexicon')
sid = SentimentIntensityAnalyzer()
def sentiment_analysis(text):
2020-09-17 07:43:37 +08:00
scores = sid.polarity_scores(text)
del scores["compound"]
return scores
2020-09-16 01:37:02 +08:00
2020-09-21 22:54:34 +08:00
io = gr.Interface(sentiment_analysis, "textbox", "label", interpretation="default")
2020-09-16 01:37:02 +08:00
io.test_launch()
io.launch()