ML VISUAL LAB / ML Methods
K-Nearest Neighbors
Intuition
Add points, change K, and observe how nearest neighbors shape the decision boundary.
Core Formula
d(x,y) = sqrt(sum((x-y)^2))
When to use it?
Simple classification baselines and pattern recognition.