Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sentiment-analysis

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sentiment-analysis

Sentiment analysis for paragraph or sentence

  • 0.1.5
  • PyPI
  • Socket score

Maintainers
1

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() # It initializes analysis progress

sadness_score = sentiment_analysis.get_sadness_score() # get depression score.
anger_score = sentiment_analysis.get_anger_score() # get anger score.
anxiety_score = sentiment_analysis.get_anxiety_score() # get anxiety score.
agony_score = sentiment_analysis.get_agony_score() # get agony score.
embarrassed_score = sentiment_analysis.get_embarrassed_score() # get embarrassed score.
happiness_score = sentiment_analysis.get_happiness_score() # get happiness score.

total_score = sentiment_analysis.get_total_score() # get all scores as list type.

positive_score = sentiment_analysis.get_positive_score() # get positive scores
negative_score = sentiment_analysis.get_negative_score() # get negative scores

Reference)

  1. https://github.com/theeluwin/lexrankr (Korean Lexrank)

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc