Skip to content

Blog

📆 Regularization in ML

Regularization is used to solve the problem of overfitting caused while training a ML model. In regularization, the model is penalized for overfitting on train data means whenever model tries to predict on training data it add some penalty to the loss function in term of coefficients of the model.

Clustering Algorithms in ML

Applications of Clustering

  • Customer Segmentation: To show personalized ADs to customers.
  • Data Analysis: Perform analysis to each cluster after performing clustering on the whole dataset.
  • Semi Supervised Learning: Google Photos uses this technique to identify person's face and put them into a separate folder.
  • Image Segmentation: You can create segments in photos to represent different objects in the photo.

KMeans

Overview: Decision Tree

Decision tree is a very crucial algorithm in ML world because using this algorithm there are many important and some of the best algo of ML is made upon like RandomForest and Xgboost.

That's why we going to take a overview of Decision Tree in this blog.

Anatomy of Decision Trees