https://github.com/samarjit98/neural-network-c
A simple neural network coded from scratch in C.
https://github.com/samarjit98/neural-network-c
backpropagation c machine-learning mnist neural-network
Last synced: about 1 year ago
JSON representation
A simple neural network coded from scratch in C.
- Host: GitHub
- URL: https://github.com/samarjit98/neural-network-c
- Owner: samarjit98
- License: mit
- Created: 2020-01-19T15:31:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-22T17:05:11.000Z (about 6 years ago)
- Last Synced: 2025-03-31T03:12:27.898Z (about 1 year ago)
- Topics: backpropagation, c, machine-learning, mnist, neural-network
- Language: C
- Homepage:
- Size: 11.1 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- License: LICENSE
Awesome Lists containing this project
README
A simple neural network coded from scratch in C.
To train on MNIST:
gcc -o train train.c
./train [num-epochs] [batch-size] [learning-rate]
MNIST dataset obtained from :- https://github.com/takafumihoriuchi/MNIST_for_C