An open API service indexing awesome lists of open source software.

https://github.com/somjit101/ds-knn-k-fold-cv

An implementation of the **k-Nearest Neighbours Classification Algorithm** using some popular demo datasets.
https://github.com/somjit101/ds-knn-k-fold-cv

classification-algorithm cross-validation cross-validation-scores k-fold-cross-validation k-nearest-neighbor-classifier k-nearest-neighbors k-nearest-neighbours knn-classifier

Last synced: 4 months ago
JSON representation

An implementation of the **k-Nearest Neighbours Classification Algorithm** using some popular demo datasets.

Awesome Lists containing this project

README

        

# DS-kNN-K-Fold-CV
An implementation of the **k-Nearest Neighbours Classification Algorithm** using some popular demo datasets.

We have also demonstrated the use of K-Fold Cross validation using the training data to determine the best value of the hyperparameter k on [this](HyperparameterTuning_KFoldCV.ipynb) file. The decision surface has been shown using two different approaches :
* Implementing from scratch using Meshgrid [here](KNN_Decision_Surface_From_Scratch.ipynb)
* Using mlxtend library [here](KNN_Automated_Decision_Surface.ipynb).