Sitemap

Machine Learning โ€“ Supervised & Unsupervised Algorithms โ€” Guided Predictions vs. Pattern Discovery

Topic Covered:

Supervised Learning: Guided Predictions
Linear Regression
Logistic Regression
Ridge & Lasso Regression
Decision Tree (Ensembles): Random Forest (Bagging), Gradient Boosting,, XGBoost (Boosting), Adaptive Boosting
Naive Bayes

Unsupervised Learning Algorithms: Pattern Discovery
Clustering
: K-mean, K-nearest, DBSCAN, Heirarical
Dimesntion Reduction: Principal Component Analysis, Linear Discriminant Analysis

Press enter or click to view image in full size
Press enter or click to view image in full size

Supervised Learning Algorithms

  • You train the model with labeled data (input + correct output).
  • You teach the model using examples that already have answers (called labels).
  • It learns from these examples to predict the answers for new, unseen data.

You have labeled data
You want to make predictions

Linear Regression

  • Predicts a continuous value.
  • Example: Predict house price based on size, location.

--

--

No responses yet