node-ann

A node package implementation of a Artificial Neural Network in JavaScript with Backpropagation learning algorithm.

Downloads
50
Stars
3
Committers
3

node-ann

A node package implementation of a Artificial Neural Network in JavaScript with Backpropagation learning algorithm.

Perceptron

    var perceptron = new ann.perceptron({id: 'namedID', bias: '1', type: 'hidden'});

Network

    var network = new ann.ann();

addPerceptron()

    network.addPerceptron(perceptron);

addWeighting()

    network.addWeighting({from: 'u1', to: 'u2', weighting: 1});

getWeightings()

    network.getWeightings();

findPerceptron()

    network.findPerceptron(id);