Record type used to store parameteres learned for continuous attributes.
TFloatRecord = packed record Mean: double; StdDev: double; ExamplesCount: integer; Weight: double; Enabled: boolean; end;
|
Members |
Description |
|
Mean |
Mean The average of all values encountered. |
|
StdDev |
Standard deviation of all values encountered. |
|
ExamplesCount |
Number of different learn examples included. |
|
Weight |
This value is 1 by default. It may be used to emphisize the value of the specific attribute towards the others. |
|
Enabled |
True, if the attribute is to be included in the classification process. |
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.
|
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
|
|
What do you think about this topic? Send feedback!
|