# topic/ai-ml/classical

10 notes · all tags

Bias-Variance Tradeoff

The expected test error of a model decomposes into three terms:

4 links · 12 backlinks
# topic/ai-ml/classical

Classical Machine Learning

Classical machine learning studies how models generalize from data without relying on large neural networks. The useful mental model is: choose a hypothesis class, define a loss…

15 links · 1 backlinks
# topic/ai-ml/classical# topic/ai-ml

Cross-Validation

Cross-validation provides honest estimates of model performance on unseen data.

2 links · 7 backlinks
# topic/ai-ml/classical

Evaluation Metrics

Classification metrics:

2 links · 10 backlinks
# topic/ai-ml/classical

K-Nearest Neighbors

KNN is a non-parametric algorithm: it stores all training data and classifies new points by majority vote among the nearest neighbors.

4 links · 3 backlinks
# topic/ai-ml/classical

Linear Regression

Linear regression models the relationship (or with bias absorbed).

6 links · 6 backlinks
# topic/ai-ml/classical

Logistic Regression

Logistic regression is a linear classifier that models the probability of class membership:

6 links · 4 backlinks
# topic/ai-ml/classical

Principal Component Analysis (PCA)

PCA finds the directions of maximum variance in data and projects onto them for dimensionality reduction.

3 links · 9 backlinks
# topic/math/linear-algebra# topic/ai-ml/classical

Random Forest

Random forest is an ensemble of decision trees that reduces variance through bagging and feature randomization.

3 links · 2 backlinks
# topic/ai-ml/classical

Regularization

Regularization adds a penalty to the loss function to prevent overfitting by constraining model complexity.

4 links · 12 backlinks
# topic/ai-ml/classical