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
| Name | Type | Description |
|---|---|---|
| Enabled | boolean | True, if the attribute is to be included in the classification process. |
| ExamplesCount | integer | Number of different learn examples included. |
| Mean | double | Mean The average of all values encountered. |
| StdDev | double | Standard deviation of all values encountered. |
| Weight | double | This value is 1 by default. It may be used to emphisize the value of the specific attribute towards the others. |