A implementation of an Artifical Neural Network with Backpropagation learning.
npm install node-annA node package implementation of a Artificial Neural Network in JavaScript with Backpropagation learning algorithm.
js
var perceptron = new ann.perceptron({id: 'namedID', bias: '1', type: 'hidden'});
`Network
`js
var network = new ann.ann();
`$3
`js
network.addPerceptron(perceptron);
`$3
`js
network.addWeighting({from: 'u1', to: 'u2', weighting: 1});
`$3
`js
network.getWeightings();
`$3
`js
network.findPerceptron(id);
``