TExampleRecord Record

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

NameTypeDescription
ClassIndexintegerClassIndex Index of the class of the learn example.
DiscreteTIntegerArrayValues of discrete attributes of the learn example.
FloatTDoubleArrayValues of real valued attributes of the learn example.