A Python port of the Fredriksen-Jahren Lexicon Classifier
Project description
Source code: https://github.com/draperunner/fjlc
This package is a Python port of the Lexicon Creator and Classifier of Valerij Fredriksen and Brage Ekroll Jahren (2016). It is compatible with Python version >= 3.
The original Java code is available here: https://github.com/freva/Masteroppgave
If using this package in your publications, please cite > Valerij Fredriksen and Brage Ekroll Jahren. Twitter Sentiment Analysis: Exploring Automatic Creation of Sentiment Lexica. Master’s thesis, 2016.
Installation
pip install fjlc
Lexicon Classifier
The LexiconClassifier uses the best performing lexicon of Fredriksen and Jahren. You can specify your own lexicon, see Options below.
Usage
from fjlc import LexiconClassifier
lc = LexiconClassifier()
You can classify a single tweet or a list of tweets:
>>> lc.classify("I am happy!") 'POSITIVE' >>> lc.classify(["I am happy!", "I hate rain"]) ['POSITIVE', 'NEGATIVE']
You can get the sentiment value of a single tweet or multiple tweets
>>> lc.classify("I am happy!") 5.599244615570646 >>> lc.classify(["I am happy!", "I hate rain"]) [5.599244615570646, -2.767224666516315]
Options
The LexiconClassifier takes three options: * lexicon: Path to sentiment lexicon file * options: Path to options file * dictionary: Path to canonical dictionary
Lexicon Creator
Usage
from fjlc import LexiconCreator
lc = LexiconCreator()
Incomplete, untested.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file fjlc-1.0.3.tar.gz
.
File metadata
- Download URL: fjlc-1.0.3.tar.gz
- Upload date:
- Size: 60.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e814e2180ab45a35cf5eb44f9932b7a835aa0c3629bb1f45d7845b7805845bff |
|
MD5 | d61f845b2833e4e1656e7347e814f75e |
|
BLAKE2b-256 | df79419ed3bb473b7884eed30f734c7964493ba2e089511b6bbeb3b5f26bfabf |