Jump to content

Lazy learning

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by RichardF77 (talk | contribs) at 16:42, 4 December 2016. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In machine learning, lazy learning is a learning method in which generalization beyond the training data is delayed until a query is made to the system, as opposed to in eager learning, where the system tries to generalize the training data before receiving queries.

The main advantage gained in employing a lazy learning method, such as Case based reasoning, is that the target function will be approximated locally, such as in the k-nearest neighbor algorithm. Because the target function is approximated locally for each query to the system, lazy learning systems can simultaneously solve multiple problems and deal successfully with changes in the problem domain.

The disadvantages with lazy learning include the large space requirement to store the entire training dataset. Particularly noisy training data increases the case base unnecessarily, because no abstraction is made during the training phase. Another disadvantage is that lazy learning methods are usually slower to evaluate, though this is coupled with a faster training phase.

Lazy classifiers are most useful for large datasets with few attributes.

References

  • lazy: Lazy Learning for Local Regression, R package with reference manual
  • "The Lazy Learning Package". Archived from the original on 16 February 2012.