A neural net simulator. First attempt.
 
 
Go to file
mandlm 26a51ce476 Hidden neuron gradients complete 2015-10-16 23:23:27 +02:00
.gitattributes 🎊 Added .gitattributes & .gitignore files 2015-03-23 19:28:10 +01:00
.gitignore 🎊 Added .gitattributes & .gitignore files 2015-03-23 19:28:10 +01:00
Layer.cpp Calculation of hidden neuron gradients (partial) 2015-10-16 22:59:04 +02:00
Layer.h Calculation of hidden neuron gradients (partial) 2015-10-16 22:59:04 +02:00
Net.cpp Calculation of hidden neuron gradients (partial) 2015-10-16 22:59:04 +02:00
Net.h Added 64-bit configuration and support 2015-10-15 22:37:13 +02:00
Neuro.cpp Renamed a few things, started working on back-propagation 2015-10-15 19:18:26 +02:00
Neuro.sln Added 64-bit configuration and support 2015-10-15 22:37:13 +02:00
Neuro.vcxproj Added 64-bit configuration and support 2015-10-15 22:37:13 +02:00
Neuro.vcxproj.filters Added README to vcxproj 2015-10-15 22:30:53 +02:00
Neuron.cpp Hidden neuron gradients complete 2015-10-16 23:23:27 +02:00
Neuron.h Hidden neuron gradients complete 2015-10-16 23:23:27 +02:00
README.md Added README to vcxproj 2015-10-15 22:30:53 +02:00

README.md

Neuro

This is my neural net sandbox. Mostly, I'm following David Miller's (http://www.millermattson.com/) tutorial at https://vimeo.com/19569529 while trying to wrap my brain around back-propagation, hyperplanes and life itself.