Neural Network
Implement a class for a neural network using back-propagation and forward-propagation.
With function like
- functions to create layers/nodes etc.
- fit() -> fit the model based on the input points and output points
- predict() -> predict using input data points.
you can more functions based on your requirement.
Path /algorithm