About 107,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. It is …

  4. KNeighborsClassifier — scikit-learn 1.9.0 documentation

    KNeighborsClassifier # class sklearn.neighbors.KNeighborsClassifier(n_neighbors=5, *, weights='uniform', algorithm='auto', leaf_size=30, p=2, metric='minkowski', metric_params=None, …

  5. Washable Air Filters, Cabin Filters, Cold Air Kits & Oil Filters | K&N

    Shop replacement K&N air filters, cold air intakes, oil filters, cabin filters, home air filters, and other high performance parts. Factory direct from the official K&N website.

  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. k-nearest neighbor algorithm using Sklearn - GeeksforGeeks

    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 …

  8. Guide to K-Nearest Neighbors (KNN) Algorithm [2026 Edition]

    Dec 27, 2025 · This guide to the K-Nearest Neighbors (KNN) algorithm in machine learning provides the most recent insights and techniques.

  9. 1.6. Nearest Neighbors — scikit-learn 1.9.0 documentation

    1.6. Nearest Neighbors # sklearn.neighbors provides functionality for unsupervised and supervised neighbors-based learning methods. Unsupervised nearest neighbors is the foundation of many other …

  10. Python—KNN分类算法(详解) - 知乎

    May 23, 2020 · 1. 概述 KNN 可以说是最简单的分类算法之一,同时,它也是最常用的分类算法之一。注意:KNN 算法是有监督学习中的分类算法,它看起来和另一个机器学习算法 K-means 有点像(K …