/titanic_neural_network

Implementation of Neural Network from scratch on Titanic Dataset.

Primary LanguageJupyter Notebook

titanic_neural_network

Dataset

The dataset used is available freely and widely. Though, the one used here comes from Kaggle.

Preprocessing

The methods used for cleaning data and handling missing are quite basic and there is huge scope to refine it further. For more details.

Model

The model is a two layer neural network written in python (little numpy) and is easy to follow. Increasing the number of epochs will continuously decrease the loss. However accuracy will increase at first and decrease at later stages which reflects overfitting, I think.