Note:this routine usesoptional parametersto define choices in the problem specification and in the details of the algorithm. If you wish to use default settings for all of the optional parameters, you need only read Sections 1 to 10 of this document. If, however, you wish to reset some or all of the settings please refer to Section 11 for a detailed description of the algorithm and to Section 12 for a detailed description of the specification of the optional parameters.
Note: please be advised that this routine is classed as ‘experimental’ and its interface may be developed further in the future. Please see
Section 4 in How to Use the NAG Library
for further information.
e04gnf is a solver from the NAG optimization modelling suite for general nonlinear data-fitting problems with constraints. Various loss and regularization functions are supported.
The routine may be called by the names e04gnf or nagf_opt_handle_solve_nldf.
3Description
e04gnf solves a data-fitting problem of the form
(1)
where
is the number of decision variables,
is the number of the nonlinear constraints and , and are -dimensional vectors,
is the number of quadratic constraints,
is the number of the linear constraints and is a matrix, and are -dimensional vectors,
there are box constraints and and are -dimensional vectors.
Here,
is an -dimensional vector representing the model parameters,
is the loss function,
is the regularization function,
is the regularization coefficient,
is the number of residuals and is the th residual, which is defined as
where is the predicted value of the th data point, given . For the th data point, and are the observed values of the independent and dependant variables respectively.
The available loss and regularization function types are summarized in Table 1, where is the function parameter and denotes an indicator function taking the value if the logical expression is true and otherwise. Loss function and regularization types can be specified by optional parameters NLDF Loss Function Type and Reg Term Type, respectively. For example, set and to use -norm loss function with -norm (Ridge) regularization. See Section 11 for more details on the loss functions.
Table 1
Choices for the loss and regularization function types.
e04gnf serves as a solver for problems stored as a handle. The handle points to an internal data structure which defines the problem and serves as a means of communication for routines in the NAG optimization modelling suite.
After the handle has been initialized (e.g., e04raf has been called),
e04rmf can be used to add a model and define its residual sparsity structure. e04rsfande04rtf may be used to set or modify quadratic constraints. Linear constraints , , are handled by e04rjf. Variable box bounds and can be specified with e04rhf, and e04rkf can set or modify nonlinear constraints. Once the problem is fully described, the handle may be passed to the solver e04gnf. When the handle is no longer needed, e04rzf should be called to destroy it and deallocate the memory held within. See Section 3.1 in the E04 Chapter Introduction for more details about the NAG optimization modelling suite.
Nonlinear Programming (NLP) solvers e04kff and e04stf are used as solver engines by e04gnf, which defines the selected loss function and regularization, then transforms the problem into standard form that the NLP solvers allow. For best performance, when the objective function is differentiable and without any constraint other than simple bound constraints, e04kff is used. For non-differentiable objective functions or cases where constraints other than simple variable bounds are present, e04stf is used. See Section 11 in e04kff and e04stf for more details on algorithmic details.
The algorithm behaviour can be modified by various optional parameters (see Section 12) which can be set by e04zmfande04zpf anytime between the initialization of the handle by e.g., e04raf and a call to the solver. Once the solver has finished, options may be modified for the next solve. The solver may be called repeatedly with various starting points and/or optional parameters. Option getter e04znf can be called to retrieve the current value of any option.
4References
None.
5Arguments
1: – Type (c_ptr)Input
On entry: the handle to the problem. It needs to be initialized (e.g., by e04raf) and to hold a problem formulation compatible with e04gnf. It must not be changed between calls to the NAG optimization modelling suite.
2: – Subroutine, supplied by the user.External Procedure
lsqfun must evaluate the value of the nonlinear residuals, , at a specified point .
On entry: , the current number of decision variables,
, in the model.
2: – Real (Kind=nag_wp) arrayInput
On entry: , the vector of variable values at which the residuals, , are to be evaluated.
3: – IntegerInput
On entry: , the current number of residuals in the model.
4: – Real (Kind=nag_wp) arrayOutput
On exit: the value of the residual vector, , evaluated at .
5: – IntegerInput/Output
On entry: a non-negative value.
On exit: may be used to indicate that some residuals could not be computed at the requested point. This can be done by setting inform to a negative value. The solver will attempt a rescue procedure and request an alternative point. If the rescue procedure fails, the solver will exit with .
6: – Integer arrayUser Workspace
7: – Real (Kind=nag_wp) arrayUser Workspace
8: – Type (c_ptr)User Workspace
lsqfun is called with the arguments iuser, ruser and cpuser as supplied to e04gnf. You should use the arrays iuser and ruser, and the data handle cpuser to supply information to lsqfun.
lsqfun must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e04gnf is called. Arguments denoted as Input must not be changed by this procedure.
3: – Subroutine, supplied by the user.External Procedure
lsqgrd evaluates the residual gradients, , at a specified point .
On entry: , the current number of decision variables,
, in the model.
2: – Real (Kind=nag_wp) arrayInput
On entry: , the vector of variable values at which the
residual gradients, , are to be evaluated.
3: – IntegerInput
On entry: , the current number of residuals in the model.
4: – IntegerInput
On entry: the number of nonzeros in the first derivative matrix.
If
in the call to e04rmf (recommended use for e04gnf) then
.
5: – Real (Kind=nag_wp) arrayInput/Output
On entry: the elements should only be assigned and not referenced.
On exit: the vector containing the nonzero residual gradients
evaluated at ,
where
The elements must be stored in the same order as the defined sparsity pattern
provided in the call to e04rmf.
6: – IntegerInput/Output
On entry: a non-negative value.
On exit: may be used to indicate that the residual gradients could not be computed at the requested point. This can be done by setting inform to a negative value. The solver will attempt a rescue procedure and request an alternative point. If the rescue procedure fails, the solver will exit with .
7: – Integer arrayUser Workspace
8: – Real (Kind=nag_wp) arrayUser Workspace
9: – Type (c_ptr)User Workspace
lsqgrd is called with the arguments iuser, ruser and cpuser as supplied to e04gnf. You should use the arrays iuser and ruser, and the data handle cpuser to supply information to lsqgrd.
lsqgrd must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e04gnf is called. Arguments denoted as Input must not be changed by this procedure.
4: – Subroutine, supplied by the NAG Library or the user.External Procedure
confun must calculate the values of the -element vector of nonlinear constraint functions at a specified value of the -element vector of variables. If there are no nonlinear constraints then confun will never be called by e04gnf and it may be the dummy subroutine e04gnx included in the NAG Library.
On entry: , the current number of decision variables,
, in the model.
2: – Real (Kind=nag_wp) arrayInput
On entry: the vector of variable values at which the constraint functions are to be evaluated.
3: – IntegerInput
On entry: , the number of nonlinear constraints, as specified in an earlier call to e04rkf.
4: – Real (Kind=nag_wp) arrayOutput
On exit: the values of the nonlinear constraint functions at .
5: – IntegerInput/Output
On entry: a non-negative value.
On exit: must be set to a value describing the action to be taken by the solver on return from confun. Specifically, if the value is negative, then the value of gx will be discarded and the solver will either attempt to find a different trial point or terminate immediately with ; otherwise, the solver will proceed normally.
6: – Integer arrayUser Workspace
7: – Real (Kind=nag_wp) arrayUser Workspace
8: – Type (c_ptr)User Workspace
confun is called with the arguments iuser, ruser and cpuser as supplied to e04gnf. You should use the arrays iuser and ruser, and the data handle cpuser to supply information to confun.
confun must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e04gnf is called. Arguments denoted as Input must not be changed by this procedure.
Note:confun should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by e04gnf. If your code inadvertently does return any NaNs or infinities, e04gnf is likely to produce unexpected results.
5: – Subroutine, supplied by the NAG Library or the user.External Procedure
congrd must calculate the nonzero values of the sparse Jacobian of the nonlinear constraint functions, , at a specified value of the -element vector of variables. If there are no nonlinear constraints,
congrd will never be called by e04gnf and congrd may be the dummy subroutine e04gny included in the NAG Library.)
On entry: , the current number of decision variables,
, in the model.
2: – Real (Kind=nag_wp) arrayInput
On entry: the vector of variable values at which the Jacobian of the constraint functions is to be evaluated.
3: – IntegerInput
On entry: is the number of nonzero elements in the sparse Jacobian of the constraint functions, as was set in a previous call to e04rkf.
4: – Real (Kind=nag_wp) arrayInput/Output
On entry: the elements should only be assigned and not referenced.
On exit: the nonzero values of the Jacobian of the nonlinear constraints, in the order specified by irowgd and icolgd in an earlier call to e04rkf. will be the gradient
, where and .
5: – IntegerInput/Output
On entry: a non-negative value.
On exit: must be set to a value describing the action to be taken by the solver on return from congrd. Specifically, if the value is negative the solution of the current problem will terminate immediately with ; otherwise, computations will continue.
6: – Integer arrayUser Workspace
7: – Real (Kind=nag_wp) arrayUser Workspace
8: – Type (c_ptr)User Workspace
congrd is called with the arguments iuser, ruser and cpuser as supplied to e04gnf. You should use the arrays iuser and ruser, and the data handle cpuser to supply information to congrd.
congrd must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e04gnf is called. Arguments denoted as Input must not be changed by this procedure.
Note:congrd should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by e04gnf. If your code inadvertently does return any NaNs or infinities, e04gnf is likely to produce unexpected results.
6: – Subroutine, supplied by the NAG Library or the user.External Procedure
monit is provided to enable monitoring of the progress of the optimization and, if necessary, to halt the optimization process.
If no monitoring is required, monit may be the dummy subroutine e04gnu supplied in the NAG Library.
monit is called at the end of every th step where is controlled by the optional parameter NLDF Monitor Frequency (if the value is , monit is not called).
On entry: , the current number of decision variables,
, in the model.
2: – Real (Kind=nag_wp) arrayInput
On entry: the current best point.
3: – IntegerInput/Output
On entry: a non-negative value.
On exit: may be used to request the solver to stop immediately
by setting inform to a non-zero value in which case it will terminate
with ; otherwise, the solver will proceed normally.
4: – Real (Kind=nag_wp) arrayInput
On entry: best objective value computed and various indicators (the values are as described in the main argument rinfo).
5: – Real (Kind=nag_wp) arrayInput
On entry: solver statistics at monitoring steps or at the end of the current iteration (the values are as described in the main argument stats).
6: – Integer arrayUser Workspace
7: – Real (Kind=nag_wp) arrayUser Workspace
8: – Type (c_ptr)User Workspace
monit is called with the arguments iuser, ruser and cpuser as supplied to e04gnf. You should use the arrays iuser and ruser, and the data handle cpuser to supply information to monit.
monit must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e04gnf is called. Arguments denoted as Input must not be changed by this procedure.
7: – IntegerInput
On entry: , the current number of decision variables,
, in the model.
8: – Real (Kind=nag_wp) arrayInput/Output
On entry: , the initial estimates of the variables, .
On exit: the final values of the variables, .
9: – IntegerInput
On entry: , the current number of residuals in the model.
10: – Real (Kind=nag_wp) arrayOutput
On exit: the values of the residuals at the final point given in x.
11: – Real (Kind=nag_wp) arrayOutput
On exit: objective value and various indicators at monitoring steps or at the end of the final iteration. The measures are:
On exit: solver statistics at monitoring steps or at the end of the final iteration:
Number of iterations performed.
Total time in seconds spent in the solver. It includes time spent in user-supplied subroutines.
Reserved for future use.
13: – Integer arrayUser Workspace
14: – Real (Kind=nag_wp) arrayUser Workspace
15: – Type (c_ptr)User Workspace
iuser, ruser and cpuser are not used by e04gnf, but are passed directly to lsqfun, lsqgrd, confun, congrd and monit and may be used to pass information to these routines. If you do not need to reference cpuser, it should be initialized to c_null_ptr.
16: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended since useful values can be provided in some output arguments even when on exit. When the value or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
Note: in some cases e04gnf may return useful information.
The supplied handle does not define a valid handle to the data structure for the NAG optimization modelling suite. It has not been properly initialized or it has been corrupted.
The problem is already being solved.
This solver does not support the model defined in the handle.
On entry, , expected .
Constraint: nres must match the current number of residuals defined in the handle.
On entry, , expected .
Constraint: nvar must match the current number of variables of the model in the handle.
The dummy confun routine was called but the problem requires these values. Please provide a proper confun routine.
The dummy congrd routine was called but the problem requires these derivatives. Please provide a proper congrd routine.
User requested termination during a monitoring step. inform was set to a negative value in monit.
The current starting point is unusable.
Either inform was set to a negative value within the user-supplied functions lsqfun, lsqgrd, or an Infinity or NaN was detected in values returned from them.
Maximum number of iterations reached.
The solver terminated after the maximum time allowed was exhausted.
Maximum number of seconds exceeded. Use optional parameter Time Limit to change the limit.
The solver was terminated because no further progress could be achieved.
This can indicate that the solver is calculating very small step sizes and is making very little progress. It could also indicate that the problem has been solved to the best numerical accuracy possible given the current scaling.
Invalid number detected in user function. Either inform was set to a negative value within the user-supplied functions lsqfun, lsqgrd, confun, congrd, or an Infinity or NaN was detected in values returned from them.
The solver terminated after an error in the step computation. This message is printed if the solver is unable to compute a search direction, despite several attempts to modify the iteration matrix.
The solver terminated after failure during line search. This could happen if the transformed problem is highly degenerate, does not satisfy the constraint qualification, or if the user-supplied code provides incorrect derivative information.
The solver terminated with not enough degrees of freedom. This indicates that the problem, as specified, has too few degrees of freedom. This can happen if there are too many equality constraints, or if there are too many fixed variables.
Problem was solved to an acceptable level; full accuracy was not achieved.
This indicates that the algorithm detected a sequence of very small reductions in the objective function value and is unable to reach a point satisfying the requested optimality tolerance. This may happen if the desired tolerances are too small for the current problem, or if the input data is badly scaled.
The solver detected an infeasible problem. This indicates that the problem may be infeasible or at least that the algorithm is stuck at a locally infeasible point. If you believe that the problem is feasible, it might help to start the solver from a different point.
e04gnf is not available in this implementation.
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
The accuracy of the solution is determined by optional parameters NLDF Stop Tolerance.
In the case where both loss function and regularization are differentiable, and with only simple bound constraints, if on exit, the returned point satisfies the first-order optimality conditions defined by (6) and (7) in e04kff to the requested accuracy. If the loss or regularization functions are non-differentiable, or the model defines linear, quadratic or general nonlinear constraint, the model is transformed and solved by e04stf. In this case, if on exit, the returned point satisfies the Karush–Kuhn–Tucker (KKT) condition defined by (10) in e04stf to the requested accuracy.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
e04gnf is not threaded in any implementation.
9Further Comments
9.1Description of the Printed Output
The solver can print information to give an overview of the problem and the progress of the computation. The output may be sent to two independent unit numbers which are set by optional parameters Print File and Monitoring File. Optional parameters Print Level, Print Options, Monitoring Level and Print Solution determine the exposed level of detail. This allows, for example, a detailed log file to be generated while the condensed information is displayed on the screen.
By default (, ), the following sections are printed to the standard output:
Header
Optional parameters list (if )
Problem statistics
Iteration log
Summary
Solution (if )
Header
The header is a message indicating the start of the solver. It should look like:
If , a list of the optional parameters and their values is printed before the problem statistics. The list shows all options of the solver, each displayed on one line. Each line contains the option name, its current value and an indicator for how it was set. The options unchanged from their defaults are noted by ‘d’ and the ones you have set are noted by ‘U’. Note that the output format is compatible with the file format expected by e04zpf. The output looks similar to:
Begin of Options
Nldf Loss Function Type = Smoothl1 * U
Nldf Huber Function Width = 1.00000E+00 * d
Nldf Cauchy Function Sharpness= 1.00000E+00 * d
Nldf Smoothl1 Function Width = 1.00000E+00 * d
Nldf Quantile Parameter = 5.00000E-01 * d
Nldf Iteration Limit = 10000000 * d
Nldf Stop Tolerance = 1.00000E-06 * d
Nldf Monitor Frequency = 0 * d
End of Options
Problem statistics
If , statistics on the problem are printed, for example:
Problem Statistics
No of variables 6
linear 2
nonlinear 4
free (unconstrained) 4
bounded 2
No of lin. constraints 1
nonzeroes 2
No of quad.constraints 0
No of nln. constraints 4
nonzeroes 3
Loss function SmoothL1
No of residuals 24
Regularization L1 Norm
Iteration log
If , the solver will print a summary line for each step. If no regularization function is specified, the output shows the iteration number, the current loss function value and the optimality measure. The output looks as follows:
If you specify a regularization type via Reg Term Type, two more columns will be printed out showing the regularization function value and the objective function value defined in (1). It might look as follows:
----------------------------------------------------
Status: converged, an optimal solution found
----------------------------------------------------
Final objective value 2.216883E+01
Final loss function value 2.146563E+01
Final regularization value 7.031993E-01
Solver stopping precision 1.068791E-08
Iterations 16
Optionally, if , the timings are printed:
Total time 0.19 sec
Solution
If , the values of the primal variables are printed. It might look as follows:
This example demonstrates how to define and solve a nonlinear regression problem using both least squares and robust regression. The regression problem consists of observations, , to be fitted over the parameter model
and the residuals for the regression are
where
The data above is generated by setting and with added random noise. Data point for are set to be outliers.
The following bounds and general linear constraints are defined on the variables
Setting the initial guess to be , the problem is first solved using least squares loss function and the expected solution is .
Then the loss function type is switched to SmoothL1 and the problem is solved again. The expected solution is , which is an improvement over least squares fit for outlier handling.
e04gnf will use the provided model, model derivative, and data to internally construct an optimization problem, and pass it off to the appropriate nonlinear programming solver. Depending on the choice of loss and regularization functions, as well as the types of constraints present, either a first-order active set method solver (e.g., e04kff) or a general nonlinear programming solver (e.g., e04stf) will be called to maximize performance.
11.1Loss Function and Regularization Types
Loss function and regularization types can be specified by optional parameters NLDF Loss Function Type and Reg Term Type, respectively. The definitions of the available loss and regularization functions are:
•L loss function:
(2)
L loss involves -norm which defines the least square errors. This is the default loss function used by e04gnf.
•L loss function:
(3)
L loss involves -norm which defines the least absolute deviation. It is robust against outliers, while still allowing them to impact the search direction to some degree. Outliers are not handled by L loss as robustly as e.g., the Atan loss function.
Cauchy loss is robust against outliers, more so than L loss but less than Atan loss. An advantage of using this function is that the residual derivatives (Jacobian) approach for large input, but slower than Atan loss by a factor proportional to . The parameter controls how sharp the Cauchy function is, with large resulting in a more flattened curve.
•Atan loss function:
(5)
Atan tends to as input tends to infinity, and its derivatives tend to . This means extreme outliers will have a negligible effect on the search direction compared to non-outliers. It also means it is important to ensure the data is well scaled and that the starting point is a reasonable guess at the true solution, if possible.
•Linf loss function:
(6)
Linf loss involves -norm which leads to the term in the objective function evaluating to . This will typically be a much smaller number than for other loss functions, since only one residual is contributing. This also means that the regularization function (if present) will have a relatively larger effect; using a lower regularization coefficient can balance this out.
Huber loss is robust against outliers, since it increases linearly with . It is also differentiable at . The loss function behaviour depends on the chosen value of ; the value of must be smaller than the difference between the outliers and the model for them to fall within the linear part of the Huber function. Increasing the parameter also increases the height and steepness of the linear part; this should be considered when comparing the final objective function value for different values of , as well as the relative effect of regularization.
This loss function is equal to Huber loss weighted by a factor of . The linear part's gradient is unaffected by , so the relative effect of regularization will be similar over different values of . Functionally it is similar to L loss if is small, and L loss if is very large.
•Quantile loss function:
(9)
where
and represents the optional parameter NLDF Quantile Parameter. Quantile loss function is similar to L loss, but adjustment of the parameter can ‘tilt’ it. For example, will lead to the model being fitted above more with respect to L loss of the data, since negative residuals contribute lower loss than positive ones. will have the opposite effect; the model will be fitted below more of the data, since positive residuals give lower loss than negative ones.
•L regularization:
•L regularization
11.2Optimization Problem Transformations
e04gnf uses auxiliary variables and constraints to implement non-differentiable loss functions (L, Quantile, Linf) and regularization functions (L). For any method that uses loss function derivatives to compute a search direction, a loss function which is not differentiable will cause problems, especially if it is non-differentiable at its minima. To solve this, we transform a model with non-differentiable loss or regularization functions into a new model with differentiable constraints and a differentiable objective function.
Consider the case where we select L loss and turn off regularization:
This is equivalent to the problem:
where the are new auxiliary variables.
Each serves as an upper bound to , so that a minimum of in the search space comprising and , is also a minimum of .
Similarly for Quantile loss with no regularization, we transform the problem:
into the equivalent model:
For Linf loss with no regularization, we transform the model:
into the model:
If regularization is present, we transform it separately from the loss function if the regularization is non-differentiable. For example, the problem
is transformed to:
where the are the auxiliary variables for the regularization.
12Optional Parameters
Several optional parameters in e04gnf define choices in the problem specification or the algorithm logic. In order to reduce the number of formal arguments of e04gnf, these optional parameters have associated default values that are appropriate for most problems. Therefore, you need only specify those optional parameters whose values are to be different from their default values.
The remainder of this section can be skipped if you wish to use the default values for all optional parameters.
The optional parameters can be changed by calling e04zmf anytime between the initialization of the handle and the call to the solver. Modification of the optional parameters during intermediate monitoring stops is not allowed. Once the solver finishes, the optional parameters can be altered again for the next solve.
For each option, we give a summary line, a description of the optional parameter and details of constraints.
The summary line contains:
the keywords, where the minimum abbreviation of each keyword is underlined;
a parameter value,
where the letters , and denote options that take character, integer and real values respectively;
the default value, where the symbol is a generic notation for machine precision (see x02ajf).
All options accept the value to return single options to their default states.
Keywords and character values are case and white space insensitive.
Defaults
This special keyword may be used to reset all optional parameters to their default values. Any value given with this keyword will be ignored.
NLDF Iteration Limit
Default
The maximum number of iterations to be performed by e04gnf. If this limit is reached, then the solver will terminate with .
Constraint: .
NLDF Monitor Frequency
Default
If , the user-supplied subroutine monit will be called at the end of every th step for monitoring purposes.
Constraint: .
NLDF Stop Tolerance
Default
This parameter sets the value of which specifies the tolerance for the optimality measure.
When both loss function and regularization are differentiable, and with only simple bound constraints, the optimality measures are defined by (6) and (7) in e04kff and NLDF Stop Tolerance is passed to the solver e04kff as FOAS Stop Tolerance.
When any of the loss function or regularization is non-differentiable, or there presents linear, quadratic or general nonlinear constraint, the optimality measure is defined by (10) in e04stf and NLDF Stop Tolerance is passed to the solver e04stf as Stop Tolerance 1.
Constraint: .
NLDF Loss Function Type
Default
This parameter sets the loss function type used in the objective function.
Constraint: , , , , , , or .
Reg Term Type
Default
This parameter sets the regularization function type used in the objective function.
Note: if there is no residual in the model, regularization will be turned off.
Constraint: , or .
NLDF Huber Function Width
Default
Sets the parameter defined in the Huber loss function (7).
Constraint: .
NLDF Cauchy Function Sharpness
Default
Sets the parameter defined in the Cauchy loss function (4).
Constraint: .
NLDF SmoothL1 Function Width
Default
Sets the parameter defined in the SmoothL1 loss function (8).
Constraint: .
NLDF Quantile Parameter
Default
Sets the parameter defined in the Quantile loss function (9).
Constraint: .
Reg Coefficient
Default
Sets the regularization coefficient in the definition of the objective function (1). Note: if set to , regularization will be turned off.
Constraint: .
Infinite Bound Size
Default
This defines the ‘infinite’ bound in the definition of the problem constraints. Any upper bound greater than or equal to will be regarded as (and similarly any lower bound less than or equal to will be regarded as ). Note that a modification of this optional parameter does not influence constraints which have already been defined; only the constraints formulated after the change will be affected.
Constraint: .
Monitoring File
Default
If , the
unit number
for the secondary (monitoring) output. If , no secondary output is provided. The information output to this unit is controlled by Monitoring Level.
Constraint: .
Monitoring Level
Default
This parameter sets the amount of information detail that will be printed by the solver to the secondary output. The meaning of the levels is the same as for Print Level.
Constraint: .
Print File
Default
If , the
unit number
for the primary output of the solver. If , the primary output is completely turned off independently of other settings. The default value is the advisory message unit number as defined by x04abf at the time of the initialization of the optional parameters, e.g., at the initialization of the handle. The information output to this unit is controlled by Print Level.
Constraint: .
Print Level
Default
This parameter defines how detailed information should be printed by the solver to the primary and secondary output.
Output
No output from the solver.
The Header and Summary.
, , ,
Additionally, the Iteration log.
Constraint: .
Print Options
Default
If , a listing of optional parameters will be printed to the primary output and is always printed to the secondary output.
Constraint: or .
Print Solution
Default
If or , the final values of the primal variables are printed on the primary and secondary outputs.
Constraint: , or .
Stats Time
Default
This parameter turns on timing. This might be helpful for a choice of different solving approaches. It is possible to choose between CPU and wall clock time. Choice is equivalent to .
Constraint: , , or .
Time Limit
Default
A limit to the number of seconds that the solver can use to solve one problem. If at the end of an iteration this limit is exceeded, the solver will terminate with .