type TKRecord = record;
Record type used by K-NN (K Nearest Neighbors) classification algorithm to store the nearest neighbors.
Stores nearest neighbors.
Fields
| Name | Type | Description |
|---|---|---|
| ClassIndex | integer | Class of the learned example. |
| Distance | double | Distance Distance of the learned example from the current example. |
| ExampleIndex | integer | Index of the learned example within the learn dataset. |