Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 855 Bytes

File metadata and controls

30 lines (25 loc) · 855 Bytes

jsRBFNN

Radial basis Function Neural Networks in Javascript

LMS is used to train.

Example of use:

<title>RBFNN written in Javascript</title> <script src="./js/namespace.js">//Loading namespace for js.RBFNN</script> <script src="./js/RBFNeuron.js">//Loading the neurons</script> <script src="./js/RBFNNet.js">//Loading the nets</script>

RBFNN written in Javascript

<script> if (typeof js_rbfnn === 'undefined') { throw "jsRBFNN: Error in index.html > js_rbfnn is not defined"; } js_rbfnn.test('somediv') </script>

Code style

The style for the code is controlled by Hound (https://houndci.com/)