Statistical learning constructs predictive rules from data and studies their risk, generalization, and computational fitting.
The L-nearest-neighbour classifier estimates each class probability by its empirical frequency among the nearest training covariates and predicts a class of greatest estimated probability.
For binary classification with posterior estimate , the plug-in classifier satisfies
A support vector machine chooses a separating decision function by trading a wide geometric margin against hinge-loss violations.
The slack variables satisfy and quantify margin violations.
A support vector is a training observation on or inside the fitted margin; it has a nonzero dual coefficient and can affect the fitted boundary.
Cross-validation estimates predictive performance by repeatedly fitting on one part of the data and evaluating on held-out observations.
Leave-one-out cross-validation performs one fit with each observation held out in turn and averages the held-out losses.
K-fold cross-validation partitions observations into folds, trains times while holding out one fold at a time, and combines the held-out losses.
A neural network composes affine maps with nonlinear activation functions and learns their weights from data.
For one-hot label and predicted class probabilities , categorical cross-entropy is , the negative categorical log-likelihood.
Overfitting occurs when further adaptation improves training performance while degrading performance on new data.
Regularization restricts or penalizes model fitting to improve generalization.
Early stopping halts iterative fitting near the best validation performance, limiting adaptation to training noise.
Articles by others on the same topic
There are currently no matching articles.