Skip to main content

No project description provided

Project description

CIDER Python Package

CIDER (Context Informed Dictionary and sEntiment Reasoner) is a Python library used to improve domain-specific sentiment analysis.

It generates, filters, and substitutes polarities into VADER. The approach taken to generate polarities is taken from SocialSent.

Contents

Installation

Before you begin, ensure you have met the following requirements:

  • You have installed Python 3.7 or later.
  • You have a Windows/Linux/Mac machine.

To install CIDER, follow these steps:

pip install ciderpolarity

Overview

The easiest way to use the package is as follows:

from ciderpolarity import CIDER

# download test data from: https://github.com/jcy204/ciderPolarity/tree/main/tests/test_data.csv
# data input is either a one column csv file where each row is a text entry, or list of strings

input_data = 'test_data.csv'
output_folder = '/path/to/output/folder/'

cdr = CIDER(input_data, output_folder)
results = cdr.fit_transform()

This trains the model, creating a customised VADER classifier, before classifying the provided input using the model. A ficticious example output is as follows:

results = [
    ['Really hate this heat. Just want AC', {"neg":0.6, "neu":0.4, "pos":0.0, "compound":-0.6}],
    ['I love an icecream in this heat!', {"neg":0.0, "neu":0.5, "pos":0.5, "compound":0.6}],
    ['I’m melting - terrible weather!', {"neg":0.7, "neu":0.3, "pos":0.0, "compound":-0.7}],
    ['Very dehydrated in this heat', {"neg":0.5, "neu":0.4, "pos":0.0, "compound":-0.5}],
            ...
    ['this sunny weather is great', {"neg":0.0, "neu":0.2, "pos":0.8, "compound":0.7}],
    ['Oh my icecream is melting', {"neg":0.3, "neu":0.4, "pos":0.3, "compound":0.0}],
    ['My AC is broken! 🥵', {"neg":0.6, "neu":0.4, "pos":0.0, "compound":-0.6}]
]

Examples

Some alternative ways to use the library are as follows:

Applying CIDER to a list of strings, adding custom seed words, custom stopwords, and tuning various parameters:

POS_seeds = {'lovely':1, 'excellent':2, 'fortunate':4, 'excited':1, 'loves':2, '♥':1, '🙂':2}
NEG_seeds = {'bad':1, 'horrible':2, 'hate':4, 'crappy':1, 'sad':2, 'bitch':1, 'hates':2}

input_data = ['list of strings']
output = '/path/to/output/test_outputs/'

cdr_example = CIDER(input_data,                   # input data 
                    output,                       # output path
                    iterations=100,               # number of iterations for bootstrapped label propagation
                    stopwords=['i', 'it', 'the'], # custom stopwords, alternativly set as 'default' for the nltk set
                    keep=['code', 'python'],      # words to force into the final lexicon
                    no_below=5,                   # exclude words that occur fewer times than this
                    max_polarities_returned=3000, # maximum number of words returned
                    pos_seeds=POS_seeds,          # positive seeds with custom weighting
                    neg_seeds=NEG_seeds,          # negative seeds with custom weighting
                    verbose=False)                # whether to print progress or not

If the model only requires training, the following can be executed:

cdr_example.fit()

And the resulting polarities (before filtering and scaling) can be viewed:

drawing

Generating Seedwords

Whilst CIDER has built in seed words (found here), custom seed words can be generated and suggested. The following shows how this is carried out:

Pos, Neg = cdr_example.generate_seeds(['good','brilliant','love'],['bad','terrible','hate'], n=20, sentiment = True)

Which looks at strongly polarised words which occur both often, are close to one seed set, and distant from the opposing seed set.

The following returns all words in the data, alongside their seed word suitability.

df = cdr_example.generate_seeds(['good','brilliant','love'],['bad','terrible','hate'], return_all = True, sentiment = True)

Alternative Scales

CIDER is not limited to sentiment. By initiating the model with alternative sets of seed words, non-intuitive linguistic scales can be produced. For instance:

from ciderpolarity import CIDER

input_data = 'test_data.csv'
output_folder = '/path/to/output/folder/'

cdr = CIDER(input_data, output_folder, predefined_seeds = 'gender')
cdr.fit()

The above creates a linguistic scale based off of proximity to gendered seed words (i.e. 'he', 'him', 'brother' and 'she', 'her', 'sister'). Below shows a sample output for this scale when applied to all of the tweets from the UK in 2020. drawing

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

ciderpolarity-0.2.4.tar.gz (15.2 kB view details)

Uploaded Source

Built Distribution

ciderpolarity-0.2.4-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

File details

Details for the file ciderpolarity-0.2.4.tar.gz.

File metadata

  • Download URL: ciderpolarity-0.2.4.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.10 Linux/5.19.0-46-generic

File hashes

Hashes for ciderpolarity-0.2.4.tar.gz
Algorithm Hash digest
SHA256 876ae1c50229eb8496b5775732f04b1c3f87f7b2dbefd48c28f75d0ed80202c2
MD5 f0a15bb4892a8a93ec71ce9237c38e9f
BLAKE2b-256 72f56bde3d1617afcd357f035d464096a49ce69f626a5bcc6a35d2f2f8c5c7c9

See more details on using hashes here.

Provenance

File details

Details for the file ciderpolarity-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: ciderpolarity-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.10 Linux/5.19.0-46-generic

File hashes

Hashes for ciderpolarity-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 6084eafc43b0adc4d3e8fdf9a95612f36453dbeea4acb00b9d3c2a9dbca47bf4
MD5 2b4e955897adc99a7dd9cca6040157de
BLAKE2b-256 e95ec99008e42f4cebf1290e509ff94a277ff1f2087453de4d2cecaa6cee21bf

See more details on using hashes here.

Provenance

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