TFloatRecord Record

type TFloatRecord = packed record;

Record type used to store parameteres learned for continuous attributes.

Stores the statistics learned about specific continuous (real valued) attribute during the learn phase. This includes total examples count and the statistics about the occurred values.

Fields

NameTypeDescription
EnabledbooleanTrue, if the attribute is to be included in the classification process.
ExamplesCountintegerNumber of different learn examples included.
MeandoubleMean The average of all values encountered.
StdDevdoubleStandard deviation of all values encountered.
WeightdoubleThis value is 1 by default. It may be used to emphisize the value of the specific attribute towards the others.