Introduction to Logistic Regression
Learn about the sigmoid function, logistic regression, and its application.
In the previous lesson, we established that a key goal of probabilistic models is to predict the target distribution , which allows us to quantify uncertainty. We also learned that discriminative models achieve this by directly estimating .
Logistic regression is the quintessential example of a discriminative model. It provides the most straightforward way to see the theory of estimation put into practice, especially for binary classification.
Logistic regression
Logistic regression is a discriminative model widely used for classification tasks. The term logistic in logistic regression refers to the utilization of the logistic function. Consider a binary classification problem: the target variable can take on values in . One way to model the probability distribution of the target label being equal to 1 given the feature vector is by employing a logistic function defined as:
...