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

    Aug 23, 2025 · When you want to classify a data point into a category like spam or not spam, the KNN algorithm looks at the K closest points in the dataset. These closest points are called neighbors.

  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. The KNN Algorithm - Explanation, Opportunities, Limitations

    Apr 23, 2025 · Explore KNN's lazy learning, inner mechanics, practical applications, limitations, and the curse of dimensionality.

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

    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 learning (2025 …

  6. K-Nearest Neighbors (kNN) - Explained | Towards Data Science

    Feb 29, 2020 · K-nearest neighbors (kNN) is a supervised machine learning algorithm that can be used to solve both classification and regression tasks. I see kNN as an algorithm that comes from real life. …

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

  8. KNN Algorithm - Explained With Example // Unstop

    It is a non-parametric and instance-based learning algorithm used for both classification and regression tasks. KNN works by comparing a given data point with its closest neighbors (k neighbors) in the …

  9. K-Nearest Neighbors (KNN) Algorithm | Explained Visually | Intuition ...

    In this video, we break down the K-Nearest Neighbors (KNN) algorithm using simple intuition, visuals, and examples.

  10. KNN Explained: From Basics to Applications - celerdata.com

    K-Nearest Neighbors (KNN) is a fundamental algorithm in supervised machine learning, applicable to both classification and regression tasks. It operates on the principle that similar data points exist in …