Skip to main content

A Python package to perform unsupervised sentiment analysis using lexicon enhanced Document embeddings

Project description

Lex2Sent - A bagging approach to unsupervised Sentiment Analysis

Lex2Sent is a text classification/clustering model that can be used with minimal a-priori-information to classify texts into two classes. While the original paper used it for sentiment analysis on english documents, it is not limited to that purpose, but can be used for any arbitrary type of classification and language as long as there are lexica that can be used as an information-basis.

Getting Started

You may install this package using either pypi

pip install lex2sent

or GitHub

pip install git+https://github.com/K-RLange/Lex2Sent.git

The following is an example of using the Opinion Lexicon to classify an iMDb movie review data set. You may have to use nltk.download() to download the opinion_lexicon first. First we configure our data set

from datasets import load_dataset
from nltk.corpus import opinion_lexicon
data = load_dataset('imdb')
ratings, reviews = [], []
for stars, text in zip(data["train"]["label"], data["train"]["text"]):
    if text:
        if stars == 0:
            ratings.append("negative")
        else:
            ratings.append("positive")
        reviews.append(text)

And now we can start applying Lex2Sent

from lex2sent.textClass import *
lexicon = ClusterLexicon([opinion_lexicon.positive(), opinion_lexicon.negative()])
rated_texts = RatedTexts(reviews, lexicon, ratings)

#Basic "counting" method of classification:
count_res = rated_texts.lexicon_classification_eval(label_list=["positive", "negative"])
l2s_res = rated_texts.lbte(label_list=["positive", "negative"], workers=4)
print("Counting accuracy: {}%; Lex2Sent accuracy: {}%".format(count_res * 100, l2s_res*100))

yielding the result "Counting accuracy: 73.772%; Lex2Sent accuracy: 78.172%".

Reference

Please refer to "Lex2Sent - A bagging approach to unsupervised Sentiment Analysis" when using this package. When you use this package in a publication, please cite it as

@misc{lex2sent,
  title = {{Lex2Sent}: {A} bagging approach to unsupervised sentiment analysis},
	shorttitle = {{Lex2Sent}},
	publisher = {arXiv},
	author = {Lange, Kai-Robin and Rieger, Jonas and Jentsch, Carsten},
	month = sep,
	year = {2022},
	note = {arXiv:2209.13023 [cs]},
	keywords = {Computer Science - Computation and Language},
}

Future Features

-Calling from the console

-FastText and SentenceBERT as alternatives to Doc2Vec

-Options to classify into more than two clusters

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

lex2sent-0.0.1.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

lex2sent-0.0.1-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file lex2sent-0.0.1.tar.gz.

File metadata

  • Download URL: lex2sent-0.0.1.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.10.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for lex2sent-0.0.1.tar.gz
Algorithm Hash digest
SHA256 7f5231ef58fbb7684c78db45762904f6d20c983c82586354a240f31baad7c575
MD5 9fe03679060ee146a3ecb0e8b34efdc4
BLAKE2b-256 daba1ff3079efb210af9b70660dc9d629071307ab2930bd4d49212b90d5c9ca2

See more details on using hashes here.

File details

Details for the file lex2sent-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: lex2sent-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.10.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for lex2sent-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c4dcfa3d2ae9d0d882656a8ea639c199a1d697bd762152f721c3af1bbb563b76
MD5 fb936ac42a1eb28097ecb924f9c0644c
BLAKE2b-256 9f23d4e07b91d2157bb1e51525b26c7ae839774e87afa1ba8a72cef73cbada8d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page