ParInitSettings
Settings for parameter initialization files (.par), used by Optimizer.
Multiple init statements can be used, for example:
CmaOptimizer { init { file = par_file1.par std_offset = 0.1 } init { file = par_file2.par exclude = "*.offset" } ... }
Public Attributes
Parameter | Type | Description |
---|---|---|
file | path | Parameter file (.par) to be used for initial parameter values. |
use_std | bool | Use the standard deviations from the init_file; default = 1. |
std_factor | double | Factor by which to multiply the standard deviations from the init_file; default = 1.0. |
std_offset | double | Offset added to the standard deviations from init_file; default = 0. |
include | String | Pattern matching the init_file parameters to include (semicolon seperated); default = “” (all). |
exclude | String | Pattern matching the init_file parameters to exclude (semicolon seperated); default = “” (none). |
locked | bool | Lock the parameters from this file, preventing them to be optimized; default = 0. |
use_best_as_mean | bool | Use values from the first column of the .par file (generation best) as mean; default = false. |
Converted from doxygen using dokugen