Socket
Socket
Sign inDemoInstall

dracula-sentiment

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dracula-sentiment

A deep sentiment analyser for Node.js which uses character embeddings.


Version published
Weekly downloads
3
Maintainers
1
Created
Weekly downloads
 

Readme

Source

dracula-sentiment-node

dracula.js

Try a live web demo »

View on npm »

A quick way to get "good enough" sentiment analysis into your applications, this package uses character and word-level embeddings and LSTM networks to decide if a given text is either "positive" or "negative".

Installation

npm install dracula-sentiment --save

Usage

var dracula = require('dracula-sentiment');
var text = "xoxo cant wait";
// Output a 'positive', 'negative', or 'neutral' label
console.log(text, dracula.analyze(text));
// To output a [negative, neutral, positive] float array
console.log(text, dracula.score(text));

For best performance and accuracy, remove any non-ascii characters by converting them to their closest equivalents via unidecode or something similar, and feed it sentence-sized chunks of text.

Testing

npm test

Tests aren't very extensive at present.

Contributing

If you encounter any sentences where the classification is obviously wrong, open an issue and we'll work out a way to extend Dracula's training data so that it doesn't happen. Contributions to clean up the code and improve its style and performance are certainly welcome!

Release

  • 1.0.0 Original release
  • 1.1.0 Adds a new function to get the underlying scores
  • 1.1.1 Documentation and npm package updates

Keywords

FAQs

Last updated on 15 Jun 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc