Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 2.27 KB

09-logistic-regression.md

File metadata and controls

50 lines (33 loc) · 2.27 KB

3.9 Logistic regression

Slides

Notes

In general, supervised models follow can be represented with this formula:

Depending on what is the type of target variable, the supervised task can be regression or classification (binary or multiclass). Binary classification tasks can have negative (0) or positive (1) target values. The output of these models is the probability of xi belonging to the positive class.

Logistic regression is similar to linear regression because both models take into account the bias term and weighted sum of features. The difference between these models is that the output of linear regression is a real number, while logistic regression outputs a value between zero and one, applying the sigmoid function to the linear regression formula.

In this way, the sigmoid function allows transforming a score into a probability.

The entire code of this project is available in this jupyter notebook.

⚠️ The notes are written by the community.
If you see an error here, please create a PR with a fix.

Navigation