A neural net simulator. First attempt.
 
 
Go to file
mandlm c9fb9b9fa8 Qt GUI initial import 2015-10-24 14:44:33 +02:00
gui/NeuroUI Qt GUI initial import 2015-10-24 14:44:33 +02:00
.gitattributes 🎊 Added .gitattributes & .gitignore files 2015-03-23 19:28:10 +01:00
.gitignore Qt GUI initial import 2015-10-24 14:44:33 +02:00
Layer.cpp Working net, calculates the mean value of two inputs 2015-10-23 22:16:12 +02:00
Layer.h Backprop seems to be working, yay 2015-10-18 21:20:37 +02:00
Net.cpp Finished the max-value net (2/3/1 neurons) with 10k learning iterations. No good. 2015-10-22 22:09:35 +02:00
Net.h Added 64-bit configuration and support 2015-10-15 22:37:13 +02:00
Neuro.cpp Working net, calculates the mean value of two inputs 2015-10-23 22:16:12 +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 Fixed feed-forward algo 2015-10-22 16:02:27 +02:00
Neuron.h Fixed feed-forward algo 2015-10-22 16:02: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.