A neural net simulator. First attempt.
 
 
Go to file
mandlm 953db0a17e Added README to vcxproj 2015-10-15 22:30:53 +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 Renamed a few things, started working on back-propagation 2015-10-15 19:18:26 +02:00
Layer.h Split up to different source files, entry-point for back propagation 2015-03-23 21:58:30 +01:00
Net.cpp More back-propagation code, calculation of output-neuron gradients 2015-10-15 22:16:34 +02:00
Net.h Renamed a few things, started working on back-propagation 2015-10-15 19:18:26 +02:00
Neuro.cpp Renamed a few things, started working on back-propagation 2015-10-15 19:18:26 +02:00
Neuro.sln Initial forward-feeding net 2015-03-23 19:28:29 +01:00
Neuro.vcxproj Added README to vcxproj 2015-10-15 22:30:53 +02:00
Neuro.vcxproj.filters Added README to vcxproj 2015-10-15 22:30:53 +02:00
Neuron.cpp More back-propagation code, calculation of output-neuron gradients 2015-10-15 22:16:34 +02:00
Neuron.h More back-propagation code, calculation of output-neuron gradients 2015-10-15 22:16:34 +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.