An open API service indexing awesome lists of open source software.

https://github.com/armandpl/nn_from_scratch

Neural Net from scratch
https://github.com/armandpl/nn_from_scratch

neural-networks numpy python

Last synced: 10 months ago
JSON representation

Neural Net from scratch

Awesome Lists containing this project

README

          

# Neural Net from scratch

This is my first atempt at implementing a neural net from scratch, without looking at any code.

# Useful ressources:
http://neuralnetworksanddeeplearning.com/chap2.html
[Neural Networks - 3b1b](https://www.youtube.com/watch?v=aircAruvnKk&list=PLZHQObOWTQDNU6R1_67000Dx_ZCJB-3pi)

https://towardsdatascience.com/weight-initialization-techniques-in-neural-networks-26c649eb3b78

## Todo
* finish implementing multiple activation functions
* implement one cycle policy
* implement multiple loss functions
* implement multiple layer types
* implement multiple metrics
* numpy exp overflow ?
* leaky relu ?