N layer neural network without using library functions(only used numpy).
-
utils.py -> This file consists of the activation functions that used in the neural net.
-
model.py -> Here all the functions related to completing one full iteration combining the forward and backward propagation are included along with the cost function. It also includes the predict() used for predicting the output using the updated parameters.
-
main.py -> It includes Neural Net architecture where all the functions from model and utils are used.