...

/

Introduction to Logistic Regression

Introduction to Logistic Regression

Learn about the sigmoid function, logistic regression, and its optimization via BCE loss.

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 yiy_i can take on values in {0,1}\{0, 1\}. One way to model the probability distribution of the target label yiy_i ...