Tree-based Methods CART: Classification And Regression Tree Grow a binary tree At each node, “split” the data into two “daughter” nodes. Splits are chosen using a splitting criterion. Bottom nodes are “terminal” nodes.
2020-10-27
Classification models.
2020-07-13
Kernel regression Kernel identities Let then the following identities hold:
2020-07-13
💡Idea Use a linear model to fit nonlinear data: add powers of each feature as new features, then train a linear model on this extended set of features. Generalize Linear Regression to Polynomial Regression In Linear Regression is modelled as linear in and
2020-07-13
Linear Regression Model A linear model makes a prediction by simply computing a weighted sum of the input , plus a constant called the bias term: For single sample/instances In matrix-form:
2020-07-06
Objective function overview
2020-07-06
TL;DR Resaon Example affect Model's complexity ⬆️ Model's complexity ⬇️ Bias wrong assumption assume a quadratic model to be linear underfitting ⬇️ ⬆️ Variance excessive sensitivity to small variations high-degree polynomial model overfitting ⬆️ ⬇️ Inreducible error noisy data Explaination A model’s generalization error can be expressed as the sum of three very different errors:
2020-07-06