download

Logistic Regression from Scratch

Lets us try to implement logistic regression from scratch in python. Recommended to be read after the Neural Networks release. Importing necessary libraries The dataset we will be using is Pima-Indians-diabetes-database Whose objective is to predict whether or not a patient has diabetes diagnostically. y = data.Outcome.values x_data = data.drop([“Outcome”],axis=1)   After this, the data…

Read More