Skip to content

Supervised Learning

Status: 🚧 Coming soon β€” a dedicated track is being written.

Supervised learning is the most common form of machine learning: you give the model labeled examples (input β†’ target) and it learns the mapping. Regression predicts numbers; classification predicts categories.

What this section will cover

  • Regression β€” Linear, Polynomial, Ridge, Lasso, ElasticNet
  • Classification β€” Logistic regression, k-NN, Naive Bayes, SVM
  • Tree-based models β€” Decision trees, Random Forests, Gradient Boosting (XGBoost, LightGBM, CatBoost)
  • Loss functions, optimization, regularization
  • Model selection: cross-validation, hyperparameter search
  • Imbalanced data, calibration, threshold tuning

The Machine Learning fundamentals section already covers most supervised techniques:

A consolidated, end-to-end supervised-learning track lands here next.