Update README.md

This commit is contained in:
George Mihaila
2020-04-26 18:47:36 -05:00
committed by GitHub
parent 54cfd3a9a9
commit a173b7b9e8

View File

@@ -9,6 +9,10 @@ positive_words = io.open("/path/to/positive-words.txt", encoding='UTF-8').read()
negative_words = io.open("/path/to/negative-words.txt", encoding='UTF-8').read().strip().split('\n')
```
### Words Counts:
* Positive: `2,006` words.
* Negative: `4,783` words
### This is borrowed from [shekhargulati
/
sentiment-analysis-python](https://github.com/shekhargulati/sentiment-analysis-python)