约 104,000 个结果
在新选项卡中打开链接
  1. K-Nearest Neighbor (KNN) Algorithm - GeeksforGeeks

    2026年5月2日 · 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. How to Find The Optimal Value of K in KNN - GeeksforGeeks

    2026年1月20日 · In K-Nearest Neighbors (KNN) algorithm, one of the key decision that directly impacts the performance of the model is choosing the optimal value of K. It represents the number of nearest …

  5. k-nearest neighbor algorithm using Sklearn - GeeksforGeeks

    2026年3月23日 · 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. 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, …

  8. Mathematical explanation of K-Nearest Neighbour - GeeksforGeeks

    2025年7月23日 · KNN stands for K-nearest neighbour is a popular algorithm in Supervised Learning commonly used for classification tasks. It works by classifying data based on its similarity to …

  9. What is k-Nearest Neighbor (kNN)? | A Comprehensive k-Nearest

    What is kNN? K-nearest neighbor definition 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 …

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

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