mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-24 10:54:04 +08:00
cc0cff893f
- black formatting - isort formatting
21 lines
432 B
Python
21 lines
432 B
Python
import nltk
|
|
from nltk.sentiment.vader import SentimentIntensityAnalyzer
|
|
|
|
import gradio as gr
|
|
|
|
nltk.download("vader_lexicon")
|
|
sid = SentimentIntensityAnalyzer()
|
|
|
|
|
|
def sentiment_analysis(text):
|
|
scores = sid.polarity_scores(text)
|
|
del scores["compound"]
|
|
return scores
|
|
|
|
|
|
iface = gr.Interface(sentiment_analysis, "textbox", "label", interpretation="default")
|
|
|
|
iface.test_launch()
|
|
if __name__ == "__main__":
|
|
iface.launch()
|