Simple Multilayer Perceptron Network library in Javascript
Base functions for layer math ported from python from NothingButNumpy blog series (link below).
Matrix function library made by GreatGameDota .
Library inspired by Tensorflow.js
Disclaimer: This library is very slow for large data sets
Input1 | Input2 | Output |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
Download csv files: Link
After downloading put the files in a folder called ‘csv’ in the MNIST folder then rename the files to ‘.txt’.
Disclaimer: This took 5-6 hours to produce with dataAmount set to 1000 and it is still not very accurate
Inspired by A Neural Network Playground by Tensorflow