RobertCrummett/neural_network
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# Simple Machine Learning in C I implemented this just to prove to myself I knew how to train a neural network without libraries. Please do not use this instead of a library :) The idea for the backpropagation engine was inspired by Andrej Karpathy's [micrograd](https://github.com/karpathy/micrograd). I learned a lot from this tiny project, you might too. # Quickstart I built this on Windows... ```sh cl mlp.c ``` But it is just standard C. Anything reasonable should do.