Open In App

Instance-based learning

Last Updated : 18 Nov, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Machine Learning systems which are categorized as instance-based learning are the systems that learn the training examples by heart and then generalizes to new instances based on some similarity measure. It is called instance-based because it builds the hypotheses from the training instances. It is also known as memory-based learning or lazy-learning (because they delay processing until a new instance must be classified). The time complexity of this algorithm depends upon the size of training data. Each time whenever a new query is encountered, its previously stores data is examined. And assign to a target function value for the new instance.  

The worst-case time complexity of this algorithm is O (n), where n is the number of training instances. For example, If we were to create a spam filter with an instance-based learning algorithm, instead of just flagging emails that are already marked as spam emails, our spam filter would be programmed to also flag emails that are very similar to them. This requires a measure of resemblance between two emails. A similarity measure between two emails could be the same sender or the repetitive use of the same keywords or something else. 

Advantages:

  1. Instead of estimating for the entire instance set, local approximations can be made to the target function.
  2. This algorithm can adapt to new data easily, one which is collected as we go .

Disadvantages:

  1. Classification costs are high
  2. Large amount of memory required to store the data, and each query involves starting the identification of a local model from scratch.

Some of the instance-based learning algorithms are :

  1. K Nearest Neighbor (KNN)
  2. Self-Organizing Map (SOM)
  3. Learning Vector Quantization (LVQ)
  4. Locally Weighted Learning (LWL)
  5. Case-Based Reasoning 

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads