Record type used by K-NN (K Nearest Neighbors) classification algorithm to store the nearest neighbors.
TKRecord = record Distance: double; ClassIndex: integer; ExampleIndex: integer; end;
Members |
Description |
Distance |
Distance Distance of the learned example from the current example. |
ClassIndex |
Class of the learned example. |
ExampleIndex |
Index of the learned example within the learn dataset. |
Stores nearest neighbors.
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
|
What do you think about this topic? Send feedback!
|