type TExampleRecord = record;
Record type used by K-NN (K Nearest Neighbors) classification algorithm to store the entire learn database in memory.
Storage format for the learn database.
Fields
| Name | Type | Description |
|---|---|---|
| ClassIndex | integer | ClassIndex Index of the class of the learn example. |
| Discrete | TIntegerArray | Values of discrete attributes of the learn example. |
| Float | TDoubleArray | Values of real valued attributes of the learn example. |