9.6k views
4 votes
In this data mining algorithm, the entire training data set is "memorized" and when unlabeled example records need to be classified, the input attributes of the new unlabeled records are compared against the entire training set to find a closest match. The class label of the closest training record is the predicted class label for the unseen test record. What is the name of this data mining algorithm?

1 Answer

1 vote

Answer:

The name fo this data mining algorithm is K-NEAREST NEIGHBOR or simply K-NN

Step-by-step explanation:

Because similar records congregate in a neighborhood in n-dimensional space, with the same target class labels. That is the major premise logic behind the approach used by the K-NN.

User Nucleic Electron
by
5.0k points