DEV Community

Cover image for K-Nearest Neighbor(K-NN) Algorithms for Machine Learning
Victor Alando
Victor Alando

Posted on

K-Nearest Neighbor(K-NN) Algorithms for Machine Learning

In this tutorial, you are going to learn about how K-Nearest Neighbors (K-NN) are applied in Machine Learning models and also in Classification.

What is K-Nearest Neighbor (K-NN)

  • K-Nearest Neighbor is one of the simplest Machine Learning algorithm based on supervised learning techniques.

  • K-Nearest Neighbor assumes the similarity between the new case and data available cases and put the new case into the category that is most similar to the available categories.

Top comments (0)