Skip to content
Home » Archives for akash34590

akash34590

Decision Tree – ID3

Introduction ID3 stands for Iterative Dichotomiser 3 and is named such because the algorithm iteratively (repeatedly) dichotomizes(divides) features into two or more groups at each step. ID3 uses a top-down greedy approach to build a… Read More »Decision Tree – ID3

Regularization

To understand why (overfitting) and where (regression) you need regularization, please go through: Intuition Let us say we want to make this function more quadratic since it is overfitting due to its higher degree-  … Read More »Regularization

Logistic Regression

Logistic regression is a statistical method used to model the probability of a certain outcome or event occurring based on a set of input variables. It is mostly used in classification tasks. Then why is… Read More »Logistic Regression

Linear Regression

Let’s start with our first algorithm of machine learning – Linear Regression. This algorithm is used to predict a target that is continuous like the price of the house, the temperature of a place, the… Read More »Linear Regression