JSPM

  • Created
  • Published
  • Downloads 255
  • Score
    100M100P100Q76334F
  • License MIT

Machine learning tools

Package Exports

  • ml

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ml) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ml

NPM version build status David deps npm download

Machine learning tools

Installation

Node.JS

$ npm install ml

Bower

$ bower install ml

Usage

Node.JS

var ML = require('ml');

Browser with AMD

require(['path/to/ml/dist/ml.min'], function (ML) {
    // ML.Math ...
});

Browser as global

<script src="path/to/ml/dist/ml.min.js" />
<script>
    // ML.Math ...
</script>

Tools

Math

ML.Math

Matrix

ML.Math.Matrix or ML.Matrix
See ml-matrix

Distance

ML.Math.Distance
See ml-distance

Stat

ML.Stat

Utilities

  • Array: ML.Stat.array
  • Matrix: ML.Stat.matrix

See ml-stat

Supervised learning

ML.SL

Support vector machines

ML.SL.SVM
See ml-svm

Neural networks

ML.NN

Self-organizing map

ML.NN.SOM
See ml-som

License

MIT