30 Machine Learning Algorithms in 30 Days

2023

Logistic Regression

3 minute read

Published:

Logistic regression, despite having “regression” in its name, is primarily used for binary classification tasks - where the outcome is one of two categories. Think of it as answering “yes” or “no” to a question. For instance, given a set of features from a breast mass, is it benign or malignant?

Linear Regression

4 minute read

Published:

Linear regression is one of the foundational pillars of machine learning and statistics. It’s a technique that establishes a relationship between two continuous variables. Simply put, it tries to fit the best straight line that predicts the output value within a range.