About 581,000 results
Open links in new tab
  1. K-Nearest Neighbor (KNN) Algorithm - GeeksforGeeks

    Aug 23, 2025 · Thе K-Nearest Neighbors (KNN) algorithm operates on the principle of similarity where it predicts the label or value of a new data point by considering the labels or values of …

  2. k-nearest neighbors algorithm - Wikipedia

    In statistics, the k-nearest neighbors algorithm (k-NN) is a non-parametric supervised learning method. It was first developed by Evelyn Fix and Joseph Hodges in 1951, [1] and later …

  3. What is the k-nearest neighbors (KNN) algorithm? - IBM

    The k-nearest neighbors (KNN) algorithm is a non-parametric, supervised learning classifier, which uses proximity to make classifications or predictions about the grouping of an individual …

  4. KNN Algorithm – K-Nearest Neighbors Classifiers and Model …

    Jan 25, 2023 · In this article, you'll learn how the K-NN algorithm works with practical examples. We'll use diagrams, as well sample data to show how you can classify data using the K-NN …

  5. K Nearest Neighbor Algorithm (KNN) Explained – Effective 2025 …

    Oct 30, 2025 · Learn what is the KNN algorithm, how it works, and its applications in machine learning (2025 guide). In the world of machine learning, one of the first algorithms you would …

  6. What Is a K-Nearest Neighbor Algorithm? | Built In

    May 22, 2025 · Summary: K-nearest neighbor (KNN) is a supervised machine learning algorithm that classifies data points based on the majority class of their closest neighbors. It uses …

  7. Chapter 6 KNN Algorithm | Machine Learning Techniques

    It can be used in a regression and in a classification context. The idea behind the KNN algorithm is simple. Suppose a binary classification problem, i.e. the dataset provides a couple of …

  8. Python Machine Learning - K-nearest neighbors (KNN) - W3Schools

    KNN is a simple, supervised machine learning (ML) algorithm that can be used for classification or regression tasks - and is also frequently used in missing value imputation.

  9. What is k-Nearest Neighbor (kNN)? | A Comprehensive k-Nearest Neighbor ...

    kNN, or the k-nearest neighbor algorithm, is a machine learning algorithm that uses proximity to compare one data point with a set of data it was trained on and has memorized to make …

  10. k-nearest neighbor algorithm using Sklearn - Python

    Jul 11, 2025 · K-Nearest Neighbors (KNN) works by identifying the 'k' nearest data points called as neighbors to a given input and predicting its class or value based on the majority class or …