🧠

Supervised Learning

Learn from labeled data β€” algorithms that map inputs to known outputs for prediction and classification.

Topics
πŸ“‹

Supervised Learning Overview

Algorithms, formulas, bias–variance tradeoff & evaluation metrics β€” all on one page.

β†’
πŸ“ˆ

Linear Regression

Predict continuous values by fitting a line that minimizes squared error.

β†’
πŸ”€

Logistic Regression

Binary classification using the sigmoid function to output probabilities.

β†’
🎲

Naive Bayes

Probabilistic classifier assuming feature independence β€” fast and effective for text.

Soon
πŸ“

K-Nearest Neighbors (KNN)

Classify by majority vote of the k closest data points in feature space.

Soon
🌳

Decision Trees

Rule-based splits using Gini impurity or entropy to partition data at each node.

Soon
🌲

Random Forest

Ensemble of decision trees using bagging to reduce variance and improve accuracy.

Soon
βœ‚οΈ

Support Vector Machine (SVM)

Find the optimal hyperplane that maximizes the margin between classes.

Soon