Skip to content

xug15/mljs

Repository files navigation

mljs

Basic knowledge.

Code


app

HTML function

LSRE

Using jsregression.min.js

Usage In HTML

Include the "node_modules/js-regression/build/jsregression.min.js" (or "node_modules/js-regression/src/jsregression.js") in your HTML <script> tag

The codes in the following html files illustrates how to use them in html pages:

===

ML

Using ML library.

List of included libraries

Unsupervised learning

Supervised learning

Artificial neural networks (ANN)

  • Feedforward Neural Networks: ML.FNN
  • Self-organizing map / Kohonen networks: ML.SOM

Regression

Optimization

Math

Functions dealing with an object containing 2 properties x and y, both arrays.

Example:

let result = ML.ArrayXY.sortX({x: [2,3,1], y: [4,6,2]});
// result = {x: [1,2,3], y: [2,4,6]}

Statistics

Data preprocessing

Utility

License

MIT