Skip to content

vrivas/jsRBFNN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/)