Logistic Regression Predictions Using Sigmoid
Learn how the logistic regression coefficients are utilized for the predictions.
We'll cover the following
From Logistic Regression coefficients to predictions using sigmoid
Before the next exercise, let’s take a look at how the coefficients for logistic regression are used to calculate predicted probabilities, and ultimately make predictions for the class of the response variable.
Recall that logistic regression predicts the probability of class membership, according to the sigmoid equation. In the case of two features with an intercept, the equation is as follows:
When you call the fit
method of a logistic regression model object in scikit-learn using the training data, the , , and parameters (intercept and coefficients) are estimated from this labeled training data. Effectively, scikit-learn figures out how to choose values for , , and , so that it will classify as many training data points correctly as possible. We’ll gain some insight into how this process works in the next chapter.
When you call predict
, scikit-learn calculates predicted probabilities according to the fitted parameter values and the sigmoid equation. A given sample will then be classified as positive if , and negative otherwise.
We know that the plot of the sigmoid equation looks like the following, which we can connect to the equation above by making the substitution :
Get hands-on with 1200+ tech skills courses.