Add description of kNN
This commit is contained in:
parent
73ac8cc350
commit
bb1b40ab2e
@ -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}
|
||||
|
||||
|
Reference in New Issue
Block a user