Skip to content
/ node-ann Public

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

Notifications You must be signed in to change notification settings

maael/node-ann

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-ann

Build Status Code Climate

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

About

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

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published