├── Makefile ├── README.md ├── backprop ├── backprop.h ├── layer.c ├── layer.h ├── main.c ├── neuron.c └── neuron.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/README.md -------------------------------------------------------------------------------- /backprop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/backprop -------------------------------------------------------------------------------- /backprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/backprop.h -------------------------------------------------------------------------------- /layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/layer.c -------------------------------------------------------------------------------- /layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/layer.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/main.c -------------------------------------------------------------------------------- /neuron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/neuron.c -------------------------------------------------------------------------------- /neuron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayurbhole/Neural-Network-framework-using-Backpropogation-in-C/HEAD/neuron.h --------------------------------------------------------------------------------