1
0

Add description of kNN

This commit is contained in:
Jip J. Dekker 2018-05-25 11:55:17 +10:00
parent 73ac8cc350
commit bb1b40ab2e

View File

@ -100,7 +100,13 @@
\paragraph{$k$-Nearest Neighbors}
($k$-NN) \cite{knn}
($k$-NN) \cite{knn} is one of the simplest machine learning algorithms. It
classifies a new instance based on its ``distance'' to the known instances.
It will find the $k$ closest instances to the new instance and assign the
new instance the class that the majority of the $k$ closest instances has.
The method has to be configured in several ways: the number of $k$, the
distance measure, and (depending on $k$) a tie breaking measure all have to
be chosen.
\paragraph{Support Vector Machine}