Skip to content

Latest commit

 

History

History
7 lines (3 loc) · 381 Bytes

README.md

File metadata and controls

7 lines (3 loc) · 381 Bytes

K-Nearest-Neighbors

This repository stores implementation to K Nearest Neighbors

K-nearest neighbour (KNN) is a classification (or regression) algorithm that in order to determine the classification of a point, combines the classification of the K nearest points. It is supervised because you are trying to classify a point based on the known classification of other points.