exemplarbased
Exemplar-based, also known as exemplar-based learning or instance-based learning, refers to a family of approaches in machine learning and pattern recognition that make predictions by comparing a new example to a stored collection of labeled instances, or exemplars. These methods are typically non-parametric and lazy: they do not build a global model during training, but defer generalization until a query is made, using the exemplars as the basis for decision.
Prediction is usually accomplished by measuring similarity between the query and exemplars using a distance or
Advantages of exemplar-based methods include simplicity, flexibility, and the ability to model complex, non-linear decision boundaries
Disadvantages include computational and storage demands at query time, sensitivity to irrelevant or noisy features, and
Exemplar-based approaches are used in image and text classification, information retrieval, and medical decision support, and