Record type used by K-NN (K Nearest Neighbors) classification algorithm to store the information about the range of real valued attributes.
TKFloatSpan = packed record Fact: double; Max: double; Min: double; end;
Members |
Description |
Fact |
The inverse of the maximum range: 1/(Max-Min). |
Max |
Maximum value of the attribute found in the learn dataset. |
Min |
Minimum value of the attribute found in the learn dataset. |
Stores the value range of attributes.
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
|
What do you think about this topic? Send feedback!
|