Без опису

Jason Xing 4ed64c719f Add classifer test for NeNeural Network 3 роки тому
Readme.md e51318af06 Update 'Readme.md' 3 роки тому
brain-browser.js 56b8385261 Add RNN test example 3 роки тому
brain-js.test-01.html 559e6a4234 Fix: test 01 is useful after delete net options 3 роки тому
brain-js.test-02-RNN.html 619f200cb7 Update: simplify test 02 3 роки тому
brain-js.test-03-LSTM-math.html b3a4057feb Add LSTM test case 3 роки тому
brain-js.test-04-classifier.html 4ed64c719f Add classifer test for NeNeural Network 3 роки тому
chart.js 4ed64c719f Add classifer test for NeNeural Network 3 роки тому

Readme.md

Brain.js Tests for Fun

Brain.js support browser GPU to run Neural Network. Based on the example from its document, here are some example to show how to use it in local browser.

1 - Neural Network

A basic example to solve XOR operation by neural network to show how simple can be to use brain.js for this function.

2 - RNN

The same XOR operation with much complex configuration of RNN structure with additional configuration to show how to set the options and change network structure.

3 - LSTM

Long-short time memory network is good solve linguistic problems. Here is use add operation to simulate them. The LSTM will guess the last half char by input to build the formula.

However, the result is not perfect. The error rate is still very high.

Additionaly, in this case, configuration is also complex. Small change of the setting will make result with huge different.