Sentiment_analysis (감성 분석)
일기 및 일상 평문 텍스트에서, 글쓴이의 감정을 유추하기 위해서 만들어진 라이브러리입니다. 감성 분석을 위해서,
Keras 및 nltk가 사용되었습니다. 또한, 텍스트의 길이에 따라서 문장을 요약하고 이에 대한 감성을 각각 분석을 하기 위해
Lexrank 알고리즘이 사용되었습니다.
해당 라이브러리는 감성을 다음 6가지의 종류로 분류합니다. (우울함, 분노, 불안, 고통, 당황, 행복)
※ 주의)
이 라이브러리는 한국어와 영어를 제외한 다른 언어를 지원하지 않습니다. 추후, 일어, 중어 및 다른 언어들에 대한 지원을 할 예정입니다.
This library is made for analyzing sentiment from a single sentence or paragraph. It uses Keras and nltk.
In addition, It also uses LexRank algorithm to summarize a paragraph.
It classifies sentiment as 6 emotions (Depression, Anger, Anxiety, Agony, Embarrassed, Happiness)
※ Caution)
This library does not support other languages except English and Korean yet. However, we have a plan to support other languages includes Japanese, Chinese, and etc.
Getting agony score won't work, if detected language is English. Be careful.
Installation
pip install sentiment-analysis
Usage
from sentiment import SentimentAnalysis
sentiment_analysis = SentimentAnalysis(want_to_analyze_sentence_or_paragraph)
sentiment_analysis.analyze()
sadness_score = sentiment_analysis.get_sadness_score()
anger_score = sentiment_analysis.get_anger_score()
anxiety_score = sentiment_analysis.get_anxiety_score()
agony_score = sentiment_analysis.get_agony_score()
embarrassed_score = sentiment_analysis.get_embarrassed_score()
happiness_score = sentiment_analysis.get_happiness_score()
total_score = sentiment_analysis.get_total_score()
positive_score = sentiment_analysis.get_positive_score()
negative_score = sentiment_analysis.get_negative_score()
Reference)
- https://github.com/theeluwin/lexrankr (Korean Lexrank)