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

mallard

v1.1.0

Published

Data Classification and Machine Learning algorithms

Downloads

5

Readme

mallard

Data Classification and Machine Learning algorithms.

NPM version Build Status Coverage Status

Module Overview

Based on the book Machine Learning in Action by Peter Harrington, mallard contains a translation of the algorithms from the orignal Python into JavaScript. The algorithms implemented so far are:

  • kNN - The k nearest neighbours algorithm classifies an unknown entity by working out the closest neighbours to it in a known dataset. The known data needs to be numerical so that distances between neighbours can be calculated.
  • ID3 - The ID3 decision tree algorithm uses known data to produce a decision tree that can then be used to classify an unknown entity. The known data for this algorithm needs to be discrete values because the generated decision tree checks for exactly matched values.
  • Naive Bayes - The Naive Bayes algorithm uses a training dataset to calculate the probabilities of a datapoint occurring in each category. These probabilities are then mapped onto the datapoints in the input, and a most probable category computed.

Usage

To load mallard, just require it:

var mallard = require('mallard');

In order to correctly classify an entity, the algorithms require a dataset of already known data. This is provided in the format of an array of objects, each object having two properties. The first property is category, which gives the classification of the object. The second property is datapoints which is an array of the values of the known features of that object.

var dataset = [
  { "category" : "A", "datapoints" : ["x", "y", "z"]},
  { "category" : "B", "datapoints" : ["s", "t", "u"]}
];

kNN

Suppose we have a mystery duck (just go with me on this), and we want to know whether it is a member of the Mallard family or the Muscovy family. Now, we know the length, wingspan, weight and type of a bunch of ducks, so we load all the data into a dataset as follows:

Note: This data is entirely fictional, so please do not use it in any live duck classification schenarios.

var continuousDataset = [
  { "category" : "Mallard", "datapoints" : [55, 87, 0.953952]},
  { "category" : "Mallard", "datapoints" : [51, 81, 0.917523]},
  { "category" : "Muscovy", "datapoints" : [72, 140, 1.126542]},
  { "category" : "Mallard", "datapoints" : [60, 90, 1.351631]},
  { "category" : "Mallard", "datapoints" : [67, 95, 1.512341]},
  { "category" : "Muscovy", "datapoints" : [66, 150, 2.354634]},
  { "category" : "Muscovy", "datapoints" : [81, 145, 4.344334]},
  { "category" : "Muscovy", "datapoints" : [84, 137, 3.123083]},
  { "category" : "Mallard", "datapoints" : [57, 89, 0.812545]},  
  { "category" : "Muscovy", "datapoints" : [65, 150, 2.124541]},
  { "category" : "Mallard", "datapoints" : [61, 90, 1.0065432]},
  { "category" : "Muscovy", "datapoints" : [70, 139, 1.7846383]}
];

Now we measure our mystery duck and find that it is 72cm long, has a wingspan of 105cm and weighs 2.123234kg, so we use the kNN function to find the nearest k matching ducks to these measurements. In this case we set k to 3.

mallard.kNN.kNN([72, 105, 2.123234], continuousDataset, 3)

==> [ { category: 'Mallard',
        distance: 0.2718076518009722 },
      { category: 'Mallard',
        distance: 0.47667718685043636 },
      { category: 'Muscovy',
        distance: 0.505638657863494 } ]

The kNN function returns the 3 nearest ducks, which are 2 Mallards and 1 Muscovy, so we can take the majority vote and say that our duck is a Mallard. If we just want the classification and don't really want to see the neighbours, we can just use the classify function:

mallard.kNN.classify([72, 105, 2.123234], continuousDataset, 3)

==> "Mallard"

ID3 Decision Tree

Suppose we can't catch our mystery duck in order to measure it, but we do at least know what it looks like. If we know what typical Mallard and Muscovy ducks look like we can use an ID3 decision tree to work through the possibilities. We load the data for the decision tree the same way as we load the data for the kNN algorithm:

var discreteDataset = [
  {"category" : "Mallard", "datapoints" : ["green", "male", "adult"]},
  {"category" : "Mallard", "datapoints" : ["brown", "female", "adult"]},
  {"category" : "Mallard", "datapoints" : ["green", "male", "child"]},
  {"category" : "Mallard", "datapoints" : ["brown", "female", "child"]},
  {"category" : "Muscovy", "datapoints" : ["black", "male", "adult"]},
  {"category" : "Muscovy", "datapoints" : ["black", "female", "adult"]},
  {"category" : "Muscovy", "datapoints" : ["white", "male", "child"]},
  {"category" : "Muscovy", "datapoints" : ["white", "female", "child"]}
];

In addition we also specify what each column represents. This is used in building the tree, and can be used to visually verify the tree is structured correctly.

var featureNames = ["head colour", "sex", "age"];

Before we can classify our duck using ID3, we first need to build a decision tree from our sample data using the createTree function:

var tree = mallard.ID3.createTree(discreteDataset, featureNames);

We can then use that generated tree to examine our mystery duck. If we know our mystery duck is a male child with a white head then we can use the classify function as follows:

mallard.ID3.classify(["white", "male", "child"], tree, featureNames)

==> "Muscovy"

Naive Bayes

Suppose we have a set of descriptions for our two different types of duck, and then a description of a mystery duck, and we want to find out what our mystery duck is. Naive Bayes excels at classifying items based on the probability that certain tokens (words) are associated with a category.

To use Naive Bayes, first we need to train the algorithm using our set of known descriptions. tokenize is a convenience function which will convert a sentence into a set of tokens to be used as the datapoints in the algorithm. train will take our training dataset and calculate the probabilities that each token appears in each category.

var ducks = [
  {"category" : "Mallard", "datapoints" : mallard.bayes.tokenize('The male birds have a glossy green head and are grey on wings and belly, while the females have mainly brown-speckled plumage.')},
  {"category" : "Mallard", "datapoints" : mallard.bayes.tokenize('The male has a dark green head, a yellow bill, is mainly purple-brown on the breast and grey on the body.')},
  {"category" : "Mallard", "datapoints" : mallard.bayes.tokenize('The female is mainly brown with an orange bill')},
  {"category" : "Mallard", "datapoints" : mallard.bayes.tokenize('The males sport a glossy green head and white neck ring, and what the females lack in colour they make up for in noise.')},
  {"category" : "Mallard", "datapoints" : mallard.bayes.tokenize('The green head and yellow bill of the mallard duck is a familiar sight to many people living in the Northern hemisphere.')},
  {"category" : "Muscovy", "datapoints" : mallard.bayes.tokenize('The bird is predominantly black and white, with the back feathers being iridescent and glossy in males, while the females are more drab.')},
  {"category" : "Muscovy", "datapoints" : mallard.bayes.tokenize('Wild Muscovy ducks are all black with white patches on the upper and under wing.')},
  {"category" : "Muscovy", "datapoints" : mallard.bayes.tokenize('They may be black, blue, chocolate, lavender or white.')},
  {"category" : "Muscovy", "datapoints" : mallard.bayes.tokenize('The original, wild type, coloration is black and white, but domestication has produced many more colors, including white, black, chocolate, and blue')},
];

var trainedDataset = mallard.bayes.train(ducks);

After training the algorithm, we just need to call the classify function with our unknown sentence to get a prediction for what it is.

mallard.bayes.classify('A small duck with a green head', trainedDataset);

==> { category: 'Mallard', probability: -16.872226918131254 }

So using Naive Bayes, our mystery duck is predicted to be a mallard, which is correct.