Hemalatha Raghavan

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
1_UgYbimgPXf6XXxMy2yqRLw

Logistic Regression

Logistic regression is one of the most popular algorithms for classification problems. It is called regression even though it is not a regression algorithm because the underlying technology is similar to Linear Regression. The term “logistic” comes from the statistical model used (logit model). As seen in earlier releases, classification algorithms are used to classify…

Read More