Skip to content

Latest commit

 

History

History
97 lines (56 loc) · 1.93 KB

File metadata and controls

97 lines (56 loc) · 1.93 KB

Machine Learning

Machine learning algorithms.

Usage

var ml = require( '@stdlib/ml' );

ml

Namespace containing machine learning algorithms.

var algs = ml;
// returns {...}

The namespace contains the following sub-namespaces:

  • incr: incremental machine learning algorithms.

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var ml = require( '@stdlib/ml' );

console.log( objectKeys( ml ) );