Skip to content

Instantly share code, notes, and snippets.

@l4rz
Created April 22, 2020 13:39
Show Gist options
  • Save l4rz/abf5640437240fc6136e5a833fee0389 to your computer and use it in GitHub Desktop.
Save l4rz/abf5640437240fc6136e5a833fee0389 to your computer and use it in GitHub Desktop.
MVP: a digit recognition neural network, trained on MNIST dataset
https://medium.com/swlh/a-hello-world-into-image-recognition-with-mnist-eb9b91520db4
---
Simple neural network implementation in C:
https://towardsdatascience.com/simple-neural-network-implementation-in-c-663f51447547
(complete code: https://gist.github.com/espiritusanti/b7485c68a06ef2c8c76d8c62c8c39d8f)
Simple MLP Backpropagation Artificial Neural Network in C++ (Step by Step):
https://www.codeproject.com/Articles/1237026/Simple-MLP-Backpropagation-Artificial-Neural-Netwo
A Step-by-Step Implementation of Gradient Descent and Backpropagation:
https://towardsdatascience.com/a-step-by-step-implementation-of-gradient-descent-and-backpropagation-d58bda486110
MNIST walkthrough in Java:
https://towardsdatascience.com/part-1-a-neural-network-from-scratch-foundation-e2d119df0f40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment