K-Nearest Neighbors (KNN)
Revision as of 20:02, 4 June 2018 by BPeat (talk | contribs) (Created page with "[http://www.youtube.com/results?search_query=k-nearest+neighbors YouTube search...] * AI Solver ** ...cluster * Capabilities This is a simple algorithm which pre...")
This is a simple algorithm which predicts unknown data point with its k nearest neighbors. The value of k is a critical factor here regarding the accuracy of prediction. It determines the nearest by calculating the distance using basic distance functions like Euclidean. However, this algorithm needs high computation power and we need to normalize data initially to bring every data point to same range