mirror of
https://github.com/onyx-and-iris/grokking-algorithms.git
synced 2025-02-21 17:25:11 +00:00
.. | ||
loaves.py | ||
README.md |
K-Nearest Neighbours
Useful for classification, regression and feature extraction. By examining a data point against its K nearest neighbours we can:
- categorize into a group
- predict responses
- convert the item into a list of features
A good starting point for machine learning.