genann
genann copied to clipboard
simple neural network library in ANSI C
In example1.c I changed output to: const double output[4] = {3, 4, 5, 6}; Compiled and re-run example1 and I still see only 1 and 0 as a result.
This example offers a simple, yet practical application to genann through number recognition. Furthermore, it offers a simple library in order to process MNIST dataset.
This PR fixes an issue in the Makefile. Specifically, previously, any modifications of files like genann.h would not trigger a rebuild of genann.o. The PR fixes this by including them...