https://github.com/coderham/neural_net_scratch
An artificial neural network from scratch coded in python, using numpy and scikit-learn.
https://github.com/coderham/neural_net_scratch
Last synced: about 1 year ago
JSON representation
An artificial neural network from scratch coded in python, using numpy and scikit-learn.
- Host: GitHub
- URL: https://github.com/coderham/neural_net_scratch
- Owner: CoderHam
- Created: 2016-04-19T04:32:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-19T04:40:33.000Z (about 10 years ago)
- Last Synced: 2025-02-19T05:16:54.388Z (over 1 year ago)
- Language: Python
- Size: 331 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neural_Net_scratch
An artificial neural network from scratch coded in python, using numpy and scikit-learn.
The above neural network was trained using backpropagation with gradient descent. The loss function being used is negative log likelihood and the activation function being used is tanh.