About 1,490,000 results
Open links in new tab
  1. 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 …

  2. K-Nearest Neighbor (KNN) Algorithm - GeeksforGeeks

    Dec 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 …

  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. Guide to K-Nearest Neighbors (KNN) Algorithm [2026 Edition]

    Dec 27, 2025 · In this article, we will talk about one such widely used machine learning classification technique called the k-nearest neighbors (KNN) algorithm. Our focus will …

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

    Oct 30, 2025 · K nearest neighbor algorithm (KNN) explained with examples, formulas, and Python code. Learn what is the KNN algorithm, how it works, and its applications in machine …

  6. 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 …

  7. K-nearest Neighbors | Brilliant Math & Science Wiki

    k-nearest neighbors (or k-NN for short) is a simple machine learning algorithm that categorizes an input by using its k nearest neighbors. For example, suppose a k-NN algorithm was given an …

  8. KNeighborsClassifier — scikit-learn 1.8.0 documentation

    Classifier implementing the k-nearest neighbors vote. Read more in the User Guide. Number of neighbors to use by default for kneighbors queries. Weight function used in prediction. …

  9. A Comprehensive Guide to the K-Nearest Neighbors (k-NN) Algorithm

    Mar 8, 2025 · In the realm of machine learning, k-Nearest Neighbors (k-NN) is often one of the first algorithms that beginners come across. Despite its simplicity, it can be a powerful tool for …

  10. K Nearest Neighbor: The Ultimate Guide to an Intuitive Machine …

    Learn everything about K Nearest Neighbor (KNN) in this comprehensive guide. Understand its working, advantages, limitations, real-world applications, and Python implementation.