I was asked to implement KNN using numpy.
Anónimo
First I implemented brute force solution by going over all the the input signals and compared them to all the gallery signals. Then, I implemented it more efficiently by utilizing matrix multiplications.