Skip to content

A Simple deep neural network library written in JavaScript.

License

Notifications You must be signed in to change notification settings

niranjannitesh/deep_neural_network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deep Neural Network

A simple Deep Neural Network Library (Not Optimized but gets simple works done).

TODO

  • Add Adam
  • Add ReLU
  • MNIST Example
  • Model Saving and Restoring
  • Add Support for Evolutionary Computing (Genetic Algorithms)

Example

const nnet = new Model(n_Error.meanSquaredError, 0.2);

nnet.addLayer(new Layer(2, sigmoid));
nnet.addLayer(new Layer(8, sigmoid));
nnet.addLayer(new Layer(1, sigmoid));

nnet.train(inputs, outputs);

nnet.predict(input).print();

npm installation

npm install nnet

License

This project is licensed under the terms of the MIT license,see LICENSE.

About

A Simple deep neural network library written in JavaScript.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published