Spam classifier on Python
Implemented algorithm knn.
In pattern recognition, the k-Nearest Neighbors algorithm (or k-NN for short) is a non-parametric method used for classification and regression. In both cases, the input consists of the k closest training examples in the feature space. The output depends on whether k-NN is used for classification or regression.
We have 2 files.
1. Train set
2. Test set
Task to classify letters on spam or not.