About 3,900,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 …

  2. Understanding the k-Nearest Neighbors (KNN) Algorithm in Machine Learning

    Sep 17, 2025 · This article provides a clear, concise explanation of KNN, a supervised learning method perfect for classification and regression. Learn how it works, explore distance metrics, …

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

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

  5. K Nearest Neighbor Algorithm in Machine Learning: 2026 Guide

    Oct 1, 2025 · Learn how the K Nearest Neighbor Algorithm works. Explore its advantages, limitations, use cases, and implementation in machine learning.

  6. K-Nearest Neighbor (KNN) Algorithm in Machine Learning

    Oct 18, 2024 · The K-Nearest Neighbor (KNN) algorithm is one of the simplest yet powerful supervised learning techniques used for classification and regression tasks in machine learning.

  7. KNN Algorithm in Machine Learning: Meaning, Working and More

    In the field of machine learning, the KNN algorithm is a short form for K-Nearest Neighbors. It’s a supervised learning algorithm often used for classification (dividing data into categories) and …

  8. K-Nearest Neighbors in Machine Learning

    Jun 14, 2025 · The K-Nearest Neighbors (KNN) algorithm is a popular supervised learning technique used for both classification and regression tasks. Its simplicity and effectiveness …

  9. KNN Algorithm in Machine Learning with Example - DevDuniya

    Mar 19, 2025 · K-Nearest Neighbors is a simple yet effective algorithm with various applications in machine learning. By understanding its strengths and limitations and carefully choosing the …

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