Metadata-Version: 2.1
Name: sentiment-analysis
Version: 0.0.2
Summary: Sentiment analysis for paragraph or sentence
Home-page: https://github.com/Mysterico/sentiment_analysis
Author: Philip Kim
Author-email: philip@mysterico.com
License: MIT
Keywords: nlp,korean
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: konlpy
Requires-Dist: lexrankr
Requires-Dist: tensorflow

# sentiment_analysis (감성 분석)
일기 및 일상 평문 텍스트에서, 글쓴이의 감정을 유추하기 위해서 만들어진 라이브러리입니다. 감성 분석을 위해서,
Keras 및 nltk가 사용되었습니다. 또한, 텍스트의 길이에 따라서 문장을 요약하고 이에 대한 감성을 각각 분석을 하기 위해
Lexrank 알고리즘이 사용되었습니다.

## Installation
`pip install sentiment-analysis`

## Usage
```
from sentiment_analysis import
```

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


