Algorithms: K-Nearest neighbor

Overview

K-Nearest neighbor algorithms store all available data points and classify each new data point based on the data points that are closest to it, as measured by a distance function.

Back to top