Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 719 Bytes

File metadata and controls

15 lines (9 loc) · 719 Bytes

Neural Network From Scratch In Python

We build and train a neural network architecture in Python without usage of deep learning frameworks.

Detailed steps of the backpropagation algorithm are shown in the animation below (source).

BackProp

Simulation

Simulation results for a classification problem are shown below. The used dataset is breast_cancer from the sklearn library.

Simulation Graphs

The code is written in Python and can be found in the src folder. The main.py file contains the main code to run the simulation.