Models — Classification
K-Nearest Neighbors Classifier component
Classify examples using the majority vote of their K nearest neighbors, with configurable distance metrics and neighbor weighting strategies.
K-Nearest Neighbors (KNN) makes predictions by finding the K training examples closest to the input and returning their most common class. No training phase is required — the model stores the training data and queries it at prediction time.