Manyue javvadiknn-algorithm-explained-by-manyue-javvadi.hashnode.dev·Oct 6, 2024How KNN Works: A Simple Explanation of Nearest NeighborsWhen to use KNN Algorithm, What is KNN Algorithm? When we need to do multi-class classification, and a linear classifier no longer performs well, it is recommended to choose KNN. KNN - What does 'K' stand for? KNN stands for K Nearest Neighbors, wh...DiscussManyueJavvadi
Omkar Kastureomkarkasture.hashnode.dev·Oct 1, 2024Classification Models Part-2: Exploring LDA and KNNIntroduction In the first part, we explored what a classification model is, using logistic regression as an example, along with the confusion matrix and different performance evaluation methods. In this article, we'll dive into two additional classif...Discuss·10 likesThe Ultimate Machine Learning Guide#ClassificationModels
Juan Carlos Olamendyjuancolamendy.hashnode.dev·Sep 23, 2024Unlocking the Power of K-Nearest Neighbors: A Deep Dive into NumPy ImplementationWelcome to the fascinating realm of K-Nearest Neighbors (KNN), a cornerstone algorithm in machine learning that's both elegantly simple and surprisingly powerful. Its simplicity belies its powerful capabilities in both classification and regression t...DiscussMachine Learning
Ankit Kumartheminermind.hashnode.dev·Jul 22, 2024Understanding K-Nearest Neighbors (KNN): From Basics to Weighted KNNIntroduction K-Nearest Neighbors (KNN) is an intuitive algorithm used for classification and regression. Imagine you move to a new neighborhood and want to know the best restaurant. You ask your closest neighbors for recommendations, and the majority...Discuss·1 likeKNN algorithms