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
Currently available β related material¶
The Machine Learning fundamentals section already covers most supervised techniques:
- Linear Regression (deep dive)
- Linear regression tutorial β W3Schools-style
- Polynomial & Regularization
- Logistic Regression & Classification
- Ensembles
A consolidated, end-to-end supervised-learning track lands here next.