1/23
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Why is the k-Nearest Neighbor algorithm considered a "Lazy Learner"?
Because no explicit model is learned and the classifier uses the training samples directly.
What does "learning by analogy" mean in the k-NN algorithm?
It means finding the most similar training samples (the "decision set") and classifying the new sample based on the majority of those samples.
What is used to determine the similarity between samples in the k-NN algorithm?
A distance function.
What does the hyperparameter 'k' represent in the k-nearest Neighbour algorithm?
It represents how many similar samples are being searched for.
What is the "decision set" in a k-Nearest Neighbor classifier?
The group of the most similar training samples found to classify a new sample.