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

    May 2, 2026 · K‑Nearest Neighbor (KNN) is a simple and widely used machine learning technique for classification and regression tasks. It works by identifying the K closest data points to a given input …

  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 expanded by Thomas …

  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 data point.

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

    Jan 25, 2023 · The K-Nearest Neighbors (K-NN) algorithm is a popular Machine Learning algorithm used mostly for solving classification problems. In this article, you'll learn how the K-NN algorithm works …

  5. k-nearest neighbor algorithm using Sklearn - Python

    Mar 23, 2026 · 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 the …

  6. K-Nearest Neighbors (KNN) in Machine Learning

    K-nearest neighbors (KNN) algorithm is a type of supervised ML algorithm which can be used for both classification as well as regression predictive problems. However, it is mainly used for classification …

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

  8. How to Implement K-Nearest Neighbors (KNN) Algorithm Step by Step

    Apr 21, 2026 · Learn how to implement K-Nearest Neighbors (KNN) algorithm step by step with simple explanation, examples, Python code, and best practices for machine learning beginners.

  9. An Introduction to K-Nearest Neighbours Algorithm

    Nov 23, 2020 · The K-Nearest Neighbours (KNN) algorithm is one of the simplest supervised machine learning algorithms that is used to solve both classification and regression problems.

  10. k-Nearest Neighbors Algorithm - an overview - ScienceDirect

    K-nearest neighbor also known as KNN is one of the simplest forms of supervised ML algorithm that is used for both classification and regression problems. KNN is assumed to be a nonparametric …