Record type used by K-NN (K Nearest Neighbors) classification algorithm to store the entire learn database in memory.
TExampleRecord = record ClassIndex: integer; Discrete: TIntegerArray; Float: TDoubleArray; end;
|
Members |
Description |
|
ClassIndex |
ClassIndex Index of the class of the learn example. |
|
Discrete |
Values of discrete attributes of the learn example. |
|
Float |
Values of real valued attributes of the learn example. |
Storage format for the learn database.
|
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
|
|
What do you think about this topic? Send feedback!
|