npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

multilang-sentiment

v2.0.0

Published

Multi language AFINN-based sentiment analysis for Node.js

Downloads

935

Readme

multilang-sentiment

Multi language AFINN-based sentiment analysis for Node.js

Build Status Coverage Status

Multilang Sentiment (fork of Sentiment) is a Node.js module that uses the AFINN-165 wordlists translated in multiple languages and Emoji Sentiment Ranking to perform sentiment analysis on arbitrary blocks of input text. Multilang Sentiment provides several things:

  • Performance (see benchmarks below)
  • The ability to append and overwrite word / value pairs from the AFINN wordlist or to use custom tokens
  • A build process that makes updating sentiment to future wordlists trivial

Installation

npm install multilang-sentiment

Usage

var sentiment = require('multilang-sentiment');

var r1 = sentiment('Cats are stupid.', 'en');
console.dir(r1);        // Score: -2, Comparative: -0.666

var r2 = sentiment('Cats are totally amazing!'); // "en" by default
console.dir(r2);        // Score: 4, Comparative: 1

Adding / overwriting words

You can append and/or overwrite values from AFINN by simply injecting key/value pairs into a sentiment method call:

var sentiment = require('multilang-sentiment');

var result = sentiment('Cats are totally amazing!', 'en', {
    'words': {
        'cats': 5,
        'amazing': 2
    }
});
console.dir(result);    // Score: 7, Comparative: 1.75

Passing custom tokens

There are languages that might require specific tokenizators, such as chinese or arabic. In such a case you can pass your own tokens.

var sentiment = require('multilang-sentiment');

var tokens = ['世界','就','是','一个','疯子','的','囚笼'];
var result = sentiment('世界就是一个疯子的囚笼', 'zh', {
    'tokens': tokens
});
console.dir(result);    // Score: -3, Comparative: -0.43

How it works

AFINN

AFINN is a list of words rated for valence with an integer between minus five (negative) and plus five (positive). Sentiment analysis is performed by cross-checking the string tokens(words, emojis) with the AFINN list and getting their respective scores. The comparative score is simply: sum of each token / number of tokens. So for example let's take the following:

I love cats, but I am allergic to them.

That string results in the following:

{
    score: 1,
    comparative: 0.1111111111111111,
    tokens: [ { value: 'i', negate: false },
     { value: 'love', negate: false },
     { value: 'cats', negate: false },
     { value: 'but', negate: false },
     { value: 'i', negate: false },
     { value: 'am', negate: false },
     { value: 'allergic', negate: false },
     { value: 'to', negate: false },
     { value: 'them', negate: false } ],
    words: [
        'allergic',
        'love'
    ],
    positive: [
        'love'
    ],
    negative: [
        'allergic'
    ]
}

Supported languages

"af","am","ar","az","be","bg","bn","bs","ca","ceb","co","cs","cy","da","de","el","en","eo","es","et","eu","fa","fi", "fr","fy","ga","gd","gl","gu","ha","haw","hi","hmn","hr","ht","hu","hy","id","ig","is","it","iw","ja","jw","ka","kk", "km","kn","ko","ku","ky","la","lb","lo","lt","lv","mg","mi","mk","ml","mn","mr","ms","mt","my","ne","nl","no","ny", "pa","pl","ps","pt","ro","ru","sd","si","sk","sl","sm","sn","so","sq","sr","st","su","sv","sw","ta","te","tg","th", "tl","tr","uk","ur","uz","vi","xh","yi","yo","zh-tw","zh","zu"

  • Returned Objects
    • Score: Score calculated by adding the sentiment values of recongnized words.
    • Comparative: Comparative score of the input string.
    • Token: All the tokens like words or emojis found in the input string.
    • Words: List of words from input string that were found in AFINN list.
    • Positive: List of postive words in input string that were found in AFINN list.
    • Negative: List of negative words in input string that were found in AFINN list.

In this case, love has a value of 3, allergic has a value of -2, and the remaining tokens are neutral with a value of 0. Because the string has 9 tokens the resulting comparative score looks like: (3 + -2) / 9 = 0.11

This approach leaves you with a mid-point of 0 and the upper and lower bounds are constrained to positive and negative 5 respectively (the same as each token! 😸). For example, let's imagine an incredibly "positive" string with 200 tokens and where each token has an AFINN score of 5. Our resulting comparative score would look like this:

(max positive score * number of tokens) / number of tokens
(5 * 200) / 200 = 5

Tokenization

Tokenization works by splitting the lines of input string, then removing the special characters, and finally splitting it using spaces. This is used to get list of words in the string.


Benchmarks

A primary motivation for designing sentiment, the forked module, was performance. As such, it includes a benchmark script within the test directory that compares it against the Sentimental module which provides a nearly equivalent interface and approach. Based on these benchmarks, running on a MacBook Pro with Node v6.9.1, sentiment is twice as fast as alternative implementations:

sentiment (Latest) x 448,788 ops/sec ±1.02% (88 runs sampled)
Sentimental (1.0.1) x 240,103 ops/sec ±5.13% (81 runs sampled)

To run the benchmarks yourself:

make benchmark

Validation

While the accuracy provided by AFINN is quite good considering it's computational performance (see above) there is always room for improvement. Therefore the multilang-sentiment module is open to accepting PRs which modify or amend the AFINN / Emoji datasets or implementation given that they improve accuracy and maintain similar performance characteristics. In order to establish this, we test the multilang-sentiment module against three labelled datasets provided by UCI.

To run the validation tests yourself:

make validate

Rand Accuracy (AFINN Only)

Amazon:  0.70
IMDB:    0.76
Yelp:    0.67

Rand Accuracy (AFINN + Additions)

Amazon:  0.72 (+2%)
IMDB:    0.77 (+1%)
Yelp:    0.70 (+3%)

Testing

npm test