Search This Blog

Simplicity is the ultimate sophistication.” — Leonardo da Vinci
Contact me: sreramk360@gmail.com

Thursday 15 December 2016

Neural Networks

Neural Network Library (work in progress) 

               -By K Sreram  

I have recently written a simple neural network algorithm and I have posted it on github. It uses feed-forward and back propagation algorithms. It is still far from a complete neural network tool. The link to the source: https://github.com/Aplokodika/MachineLearning/tree/master/src  


 
I have made sure that the composing the main function must be made as short as possible. This is to ensure that most time consuming tasks must be done internally. Also, the initialization can be done in any order.  

This is an example of a Main Method using the neural network library 

The part of the code responsible for training

No comments:

Post a Comment

Featured post

Why increasing complexity is not good?

“ Simplicity is the ultimate sophistication.” — Leonardo da Vinci Why is complicating things wrong ? - K Sr...