Skip to content
This repository has been archived by the owner on Jun 1, 2019. It is now read-only.

Latest commit

 

History

History
4 lines (3 loc) · 443 Bytes

README.md

File metadata and controls

4 lines (3 loc) · 443 Bytes

FeedForwardMachineLearning

A (slow) from-scratch implementation of a Feed Forward Neural Network with Backpropagation in C# / .NET

In this Code Base I implemented a Matrix Class, from which I implemented a FeedForwardLayer class which is used in FeedForwardNeuralNetwork to learn on a given set of traning and testing examples. I use Backpropagation, but I have not (yet?) implemented any Optimizers, so I am just using the basic gradient.