date created | date updated | tags | |||
---|---|---|---|---|---|
2022-03-22 11:15 |
2022-03-22 13:43 |
|
Lazy learning #algorithms simply store the training data (or perform limited processing) and only operate when given a test example. This allows for very quick training, but predictions can be quite slow.
- #K-NN
Eager learning #algorithms construct a classification model given a training set before receiving new test data to classify. This means that training is generally slow, but predictions are relatively quick.