IWNN_STATE_CALC_PARAMETER Structure

Description

The state calculation parameter structure sets parameters used with the processes listed below.
- Updates the bias value for each category when performing learning
- Determines the priority order of candidates during situational adaptive prediction.

Structure Configuration

struct IWNN_STATE_CALC_PARAMETER {
     s16 sysMaxBias[NJ_MAX_STATE];                     // Maximum bias value
     s16 sysMinBias[NJ_MAX_STATE];                     // Minimum bias value
     s16 sysAddBias[NJ_MAX_STATE];                     // Bias value always added
     s16 sysBaseBias[NJ_MAX_STATE];                    // Bias value restore value
     s16 sysChangeBias[NJ_MAX_STATE][NJ_MAX_STATE];    // Added bias value during learning
     s16 dicInfoMax[NJ_MAX_DIC];                       // Maximum frequency value for situational configured dictionary
     s16 dicInfoMin[NJ_MAX_DIC];                       // Minimum frequency value for situational configured dictionary
}

Structure Members

s16 sysMaxBias Maximum bias value.
Specifies the maximum bias value to be updated inside iWnn during learning.
The allowable setting range is -1000 to 1000.
s16 sysMinBias Minimum bias value.
Specifies the minimum bias value to be updated inside iWnn during learning.
The allowable setting range is -1000 to 1000.
s16 sysAddBias Bias value always added.
Specifies the bias value to always be added to a bias value equal to or less than zero during learning.
The allowable setting range is -1000 to 1000.
s16 sysBaseBias Bias value recovery value.
Specifies the value to use when restoring this value when the bias value is less than or equal to this value during learning.
The allowable setting range is -1000 to 1000.
s16 sysChangeBias Added bias value during learning.
Specifies the bias value to be added to the bias value in all situations during learning.
The allowable setting range is -1000 to 1000.
s16 dicInfoMax Maximum dictionary frequency value.
Sets the maximum dictionary frequency value to use during situational adaptive prediction.
The allowable setting range is -1000 to 1000.
s16 dicInfoMin Minimum dictionary frequency value.
Sets the minimum dictionary frequency value to use during situational adaptive prediction.
The allowable setting range is -1000 to 1000.

CONFIDENTIAL