https://github.com/chneau/sentiment
A sentiment tool
https://github.com/chneau/sentiment
golang sentiment-analysis words
Last synced: 12 months ago
JSON representation
A sentiment tool
- Host: GitHub
- URL: https://github.com/chneau/sentiment
- Owner: chneau
- License: mit
- Created: 2018-05-25T14:38:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-14T21:56:50.000Z (over 7 years ago)
- Last Synced: 2025-06-19T02:49:35.224Z (12 months ago)
- Topics: golang, sentiment-analysis, words
- Language: Go
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sentiment
A sentiment tool
# sources
```
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Opinion Lexicon: Negative
;
; This file contains a list of NEGATIVE opinion words (or sentiment words).
;
; This file and the papers can all be downloaded from
; http://www.cs.uic.edu/~liub/FBS/sentiment-analysis.html
;
; If you use this list, please cite one of the following two papers:
;
; Minqing Hu and Bing Liu. "Mining and Summarizing Customer Reviews."
; Proceedings of the ACM SIGKDD International Conference on Knowledge
; Discovery and Data Mining (KDD-2004), Aug 22-25, 2004, Seattle,
; Washington, USA,
; Bing Liu, Minqing Hu and Junsheng Cheng. "Opinion Observer: Analyzing
; and Comparing Opinions on the Web." Proceedings of the 14th
; International World Wide Web conference (WWW-2005), May 10-14,
; 2005, Chiba, Japan.
;
; Notes:
; 1. The appearance of an opinion word in a sentence does not necessarily
; mean that the sentence expresses a positive or negative opinion.
; See the paper below:
;
; Bing Liu. "Sentiment Analysis and Subjectivity." An chapter in
; Handbook of Natural Language Processing, Second Edition,
; (editors: N. Indurkhya and F. J. Damerau), 2010.
;
; 2. You will notice many misspelled words in the list. They are not
; mistakes. They are included as these misspelled words appear
; frequently in social media content.
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
```
```
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Opinion Lexicon: Positive
;
; This file contains a list of POSITIVE opinion words (or sentiment words).
;
; This file and the papers can all be downloaded from
; http://www.cs.uic.edu/~liub/FBS/sentiment-analysis.html
;
; If you use this list, please cite one of the following two papers:
;
; Minqing Hu and Bing Liu. "Mining and Summarizing Customer Reviews."
; Proceedings of the ACM SIGKDD International Conference on Knowledge
; Discovery and Data Mining (KDD-2004), Aug 22-25, 2004, Seattle,
; Washington, USA,
; Bing Liu, Minqing Hu and Junsheng Cheng. "Opinion Observer: Analyzing
; and Comparing Opinions on the Web." Proceedings of the 14th
; International World Wide Web conference (WWW-2005), May 10-14,
; 2005, Chiba, Japan.
;
; Notes:
; 1. The appearance of an opinion word in a sentence does not necessarily
; mean that the sentence expresses a positive or negative opinion.
; See the paper below:
;
; Bing Liu. "Sentiment Analysis and Subjectivity." An chapter in
; Handbook of Natural Language Processing, Second Edition,
; (editors: N. Indurkhya and F. J. Damerau), 2010.
;
; 2. You will notice many misspelled words in the list. They are not
; mistakes. They are included as these misspelled words appear
; frequently in social media content.
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
```
```
badwords
https://www.freewebheaders.com/full-list-of-bad-words-banned-by-google/
```