Skip to content

Javascript - Basic, lightweight, zero dependent, supervised, online learning tool

License

Notifications You must be signed in to change notification settings

FurkanOM/JS-ANN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JS-ANN

Basic, lightweight, zero dependent, supervised, online learning tool. It can be used for any purpose.

Usage

var network = new Network(trainData, hiddenNeuronNumber, outputNeuronNumber, goalError, epoch, learningRate);
network.init();
// If you don't set momentum and weight decay values network automatically ignore these processes
network.setWeightDecay(0.001);
network.setMomentum(0.1);
// Training process
network.train();
// Test process
network.setTestData(testData);
network.test();

About

Javascript - Basic, lightweight, zero dependent, supervised, online learning tool

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published