Giter Club home page Giter Club logo

credulous's Introduction

build status

credulous.js

credulous.js is a simple implementation of a Naive Bayes classifer in JavaScript. You train it with a corpus of strings, and then classify new strings.

Isn't There Already A Naive Bayes Classifier For JavaScript?

Yes, but then I wouldn't get to write this one myself!

Also, this one implements some nice trickyness. It lets you classify on multiple attirbutes, does Laplace correction to better handle infrequently found words, does calculations in log-space to avoid underflow, and has a few other improvements.

Installation

node.js

credulous.js is a CommonJS module, so it will work out of the box for node.js. Install like so:

npm install credulous

Browser

credulous.js was tested in modern browsers, and relies upon ECMAScript 5 features. That means IE 9 and above, Chrome, FireFox, and Safai.

If you want to use credulous.js in the browser, pakmanager, Ender.js, browserify or OneJS all let you use CommonJS packages in client-side code. See their documentation for details.

You can also just download a standalone version here.

How To Use It

Enough talk about usage. Get to the codes!

var Credulous = require('credulous');

var model = new Credulous();
// .train can take a single object or an array of objects
// The objects must be of the form { data: 'some data', class: 'a string representing the class name' }
model.train({ data: 'Great viagra for you!', class: 'spam' });
model.train([{ data: 'UTOSC is the best conference ever!', class: 'not spam'},
             { data: 'Some more strings that are not spam!', class: 'not spam'}]);

var result = model.classify('You have received a large inheritance, please just send me a blank money order!');
console.log('result is', result);
// 'result is spam'

credulous's People

Contributors

jergason avatar matt-forster avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

credulous's Issues

License

Nice project. Can you please indicate under which license it has been released? A LICENSE file in the repo would help a lot. Thanks!

Michel

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.