NAG CL Interface
e04gnc (handle_solve_nldf)
Note: this function uses optional parameters to 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.
1
Purpose
e04gnc is a solver from the NAG optimization modelling suite for general nonlinear data-fitting problems with constraints. Various loss and regularization functions are supported.
2
Specification
The function may be called by the names: e04gnc or nag_opt_handle_solve_nldf.
3
Description
e04gnc solves a data-fitting problem of the form
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
and
, 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.
Loss function |
|
|
-norm |
|
|
-norm |
|
|
-norm |
|
|
Huber (see (7)) |
|
|
Cauchy (see (4)) |
|
|
Atan |
|
|
SmoothL1 (see (8)) |
|
|
Quantile (see (9)) |
|
|
Regularization |
|
|
Lasso (-norm) |
|
|
Ridge (-norm) |
|
|
e04gnc 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 functions in the NAG optimization modelling suite.
After the
handle has been initialized (e.g.,
e04rac has been called),
e04rmc can be used to add a model and define its residual sparsity structure.
e04rsc and
e04rtc may be used to set or modify quadratic constraints. Linear constraints
,
,
are handled by
e04rjc. Variable box bounds
and
can be specified with
e04rhc, and
e04rkc can set or modify nonlinear constraints. Once the problem is fully described, the
handle may be passed to the solver
e04gnc. When the
handle is no longer needed,
e04rzc should be called to destroy it and deallocate the memory held within. See
Section 4.1 in the
E04 Chapter Introduction for more details about the NAG optimization modelling suite.
Nonlinear Programming (NLP) solvers
e04kfc and
e04stc are used as solver engines by
e04gnc, 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,
e04kfc is used. For non-differentiable objective functions or cases where constraints other than simple variable bounds are present,
e04stc is used. See
Section 11 in
e04kfc and
e04stc for more details on algorithmic details.
The algorithm behaviour can be modified by various optional parameters (see
Section 12) which can be set by
e04zmc and
e04zpc anytime between the initialization of the
handle by e.g.,
e04rac 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
e04znc can be called to retrieve the current value of any option.
4
References
None.
5
Arguments
-
1:
– void *
Input
-
On entry: the handle to the problem. It needs to be initialized (e.g., by
e04rac) and to hold a problem formulation compatible with
e04gnc. It
must not be changed between calls to the NAG optimization modelling suite.
-
2:
– function, supplied by the user
External Function
-
lsqfun must evaluate the value of the nonlinear residuals,
, at a specified point
.
The specification of
lsqfun is:
-
1:
– Integer
Input
-
On entry: , the current number of decision variables,
, in the model.
-
2:
– const double
Input
-
On entry: , the vector of variable values at which the residuals, , are to be evaluated.
-
3:
– Integer
Input
-
On entry: , the current number of residuals in the model.
-
4:
– double
Output
-
On exit: the value of the residual vector, , evaluated at .
-
5:
– Integer *
Input/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
NE_USER_NAN.
-
6:
– Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to
lsqfun.
- user – double *
- iuser – Integer *
- p – Pointer
The type Pointer will be
void *. Before calling
e04gnc you may allocate memory and initialize these pointers with various quantities for use by
lsqfun when called from
e04gnc (see
Section 3.1.1 in the Introduction to the NAG Library CL Interface).
-
3:
– function, supplied by the user
External Function
-
lsqgrd evaluates the residual gradients,
, at a specified point
.
The specification of
lsqgrd is:
-
1:
– Integer
Input
-
On entry: , the current number of decision variables,
, in the model.
-
2:
– const double
Input
-
On entry: , the vector of variable values at which the
residual gradients, , are to be evaluated.
-
3:
– Integer
Input
-
On entry: , the current number of residuals in the model.
-
4:
– Integer
Input
-
On entry: the number of nonzeros in the first derivative matrix.
If
in the call to
e04rmc (recommended use for
e04gnc) then
.
-
5:
– double
Input/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
e04rmc.
-
6:
– Integer *
Input/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
NE_USER_NAN.
-
7:
– Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to
lsqgrd.
- user – double *
- iuser – Integer *
- p – Pointer
The type Pointer will be
void *. Before calling
e04gnc you may allocate memory and initialize these pointers with various quantities for use by
lsqgrd when called from
e04gnc (see
Section 3.1.1 in the Introduction to the NAG Library CL Interface).
-
4:
– function, supplied by the user
External Function
-
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
e04gnc and may be specified as
NULLFN.
The specification of
confun is:
-
1:
– Integer
Input
-
On entry: , the current number of decision variables,
, in the model.
-
2:
– const double
Input
-
On entry: the vector of variable values at which the constraint functions are to be evaluated.
-
3:
– Integer
Input
-
On entry:
, the number of nonlinear constraints, as specified in an earlier call to
e04rkc.
-
4:
– double
Output
-
On exit: the values of the nonlinear constraint functions at .
-
5:
– Integer *
Input/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
NE_USER_NAN; otherwise, the solver will proceed normally.
-
6:
– Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to
confun.
- user – double *
- iuser – Integer *
- p – Pointer
The type Pointer will be
void *. Before calling
e04gnc you may allocate memory and initialize these pointers with various quantities for use by
confun when called from
e04gnc (see
Section 3.1.1 in the Introduction to the NAG Library CL Interface).
Note: confun should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
e04gnc. If your code inadvertently
does return any NaNs or infinities,
e04gnc is likely to produce unexpected results.
-
5:
– function, supplied by the user
External Function
-
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
e04gnc and may be specified as
NULLFN.
The specification of
congrd is:
-
1:
– Integer
Input
-
On entry: , the current number of decision variables,
, in the model.
-
2:
– const double
Input
-
On entry: the vector of variable values at which the Jacobian of the constraint functions is to be evaluated.
-
3:
– Integer
Input
-
On entry: is the number of nonzero elements in the sparse Jacobian of the constraint functions, as was set in a previous call to
e04rkc.
-
4:
– double
Input/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
e04rkc.
will be the gradient
, where
and
.
-
5:
– Integer *
Input/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
NE_USER_NAN; otherwise, computations will continue.
-
6:
– Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to
congrd.
- user – double *
- iuser – Integer *
- p – Pointer
The type Pointer will be
void *. Before calling
e04gnc you may allocate memory and initialize these pointers with various quantities for use by
congrd when called from
e04gnc (see
Section 3.1.1 in the Introduction to the NAG Library CL Interface).
Note: congrd should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
e04gnc. If your code inadvertently
does return any NaNs or infinities,
e04gnc is likely to produce unexpected results.
-
6:
– function, supplied by the user
External Function
-
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 specified as
NULLFN.
monit is called at the end of every
th step where
is controlled by the optional parameter
(if the value is
,
monit is not called).
The specification of
monit is:
-
1:
– Integer
Input
-
On entry: , the current number of decision variables,
, in the model.
-
2:
– const double
Input
-
On entry: the current best point.
-
3:
– Integer *
Input/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
NE_USER_STOP; otherwise, the solver will proceed normally.
-
4:
– const double
Input
-
On entry: best objective value computed and various indicators (the values are as described in the main argument
rinfo).
-
5:
– const double
Input
-
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:
– Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to
monit.
- user – double *
- iuser – Integer *
- p – Pointer
The type Pointer will be
void *. Before calling
e04gnc you may allocate memory and initialize these pointers with various quantities for use by
monit when called from
e04gnc (see
Section 3.1.1 in the Introduction to the NAG Library CL Interface).
-
7:
– Integer
Input
-
On entry: , the current number of decision variables,
, in the model.
-
8:
– double
Input/Output
-
On entry: , the initial estimates of the variables, .
On exit: the final values of the variables, .
-
9:
– Integer
Input
-
On entry: , the current number of residuals in the model.
-
10:
– double
Output
-
On exit: the values of the residuals at the final point given in
x.
-
11:
– double
Output
-
On exit: objective value and various indicators at monitoring steps or at the end of the final iteration. The measures are:
|
Objective function value, in (1). |
|
Loss function value, in (1).
|
|
Regularization term value, in (1).
|
|
Solution optimality measure. |
|
Reserved for future use. |
-
12:
– double
Output
-
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:
– Nag_Comm *
-
The NAG communication argument (see
Section 3.1.1 in the Introduction to the NAG Library CL Interface).
-
14:
– NagError *
Input/Output
-
The NAG error argument (see
Section 7 in the Introduction to the NAG Library CL Interface).
e04gnc returns with
NE_NOERROR if the iterates have converged to a point
that satisfies the convergence criteria described in
Section 7.
6
Error Indicators and Warnings
- NE_ALLOC_FAIL
-
Dynamic memory allocation failed.
See
Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
- NE_BAD_PARAM
-
On entry, argument had an illegal value.
- NE_FAILED_START
-
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.
- NE_HANDLE
-
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.
- NE_INTERNAL_ERROR
-
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact
NAG for assistance.
See
Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
- NE_MAYBE_INFEASIBLE
-
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.
- NE_NO_IMPROVEMENT
-
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.
- NE_NO_LICENCE
-
Your licence key may have expired or may not have been installed correctly.
See
Section 8 in the Introduction to the NAG Library CL Interface for further information.
- NE_NOT_IMPLEMENTED
-
e04gnc is not available in this implementation.
- NE_NULL_ARGUMENT
-
The problem requires the
confun values. Please provide a proper
confun function.
The problem requires the
congrd derivatives. Please provide a proper
congrd function.
- NE_PHASE
-
The problem is already being solved.
- NE_REF_MATCH
-
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.
- NE_SETUP_ERROR
-
This solver does not support the model defined in the handle.
- NE_SUBPROBLEM
-
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.
- NE_TIME_LIMIT
-
The solver terminated after the maximum time allowed was exhausted.
Maximum number of seconds exceeded. Use optional parameter to change the limit.
- NE_TOO_MANY_ITER
-
Maximum number of iterations reached.
- NE_USER_NAN
-
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.
- NE_USER_STOP
-
User requested termination during a monitoring step.
inform was set to a negative value in
monit.
- NW_NOT_CONVERGED
-
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.
7
Accuracy
The accuracy of the solution is determined by optional parameters .
In the case where both loss function and regularization are differentiable, and with only simple bound constraints, if
NE_NOERROR on exit, the returned point satisfies the first-order optimality conditions defined by
(6) and
(7) in
e04kfc 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
e04stc. In this case, if
NE_NOERROR on exit, the returned point satisfies the Karush–Kuhn–Tucker (KKT) condition defined by
(10) in
e04stc to the requested accuracy.
8
Parallelism and Performance
Background information to multithreading can be found in the
Multithreading documentation.
e04gnc is not threaded in any implementation.
9.1
Description 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 file ID which are set by optional parameters and . Optional parameters , , and 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:
-------------------------------
E04GN, Nonlinear Data-Fitting
-------------------------------
Optional parameters list
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
e04zpc. 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:
--------------------------
it| lossfun | optim
--------------------------
1 1.05863E+02 3.25E+02
2 3.51671E+01 9.03E+01
3 2.79091E+01 4.95E+01
4 2.63484E+01 1.43E+01
5 2.30795E+01 2.59E+01
If you specify a regularization type via
, 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:
----------------------------------------------------
it| objfun | lossfun | reg | optim
----------------------------------------------------
1 2.11489E+01 2.02833E+01 8.65649E-01 1.27E+02
2 2.28405E+01 2.21698E+01 6.70710E-01 9.47E+01
3 2.30351E+01 2.23599E+01 6.75246E-01 1.62E+01
4 2.22836E+01 2.15675E+01 7.16133E-01 1.32E+01
5 2.22676E+01 2.15522E+01 7.15411E-01 3.80E+00
6 2.21776E+01 2.14746E+01 7.02983E-01 3.92E-01
7 2.22075E+01 2.15060E+01 7.01510E-01 6.08E-01
Summary
Once the solver finishes, a summary is produced:
----------------------------------------------------
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:
Primal variables:
idx Lower bound Value Upper bound
1 -1.00000E+00 9.69201E-02 inf
2 0.00000E+00 7.95110E-01 1.00000E+00
10
Example
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.
10.1
Program Text
10.2
Program Data
None.
10.3
Program Results
11
Algorithmic Details
e04gnc 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.,
e04kfc) or a general nonlinear programming solver (e.g.,
e04stc) will be called to maximize performance.
11.1
Loss Function and Regularization Types
Loss function and regularization types can be specified by optional parameters
and
, respectively. The definitions of the available loss and regularization functions are:
-
•L loss function:
L loss involves -norm which defines the least square errors. This is the default loss function used by e04gnc.
-
•L loss function:
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 function:
where represents the optional parameter .
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:
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:
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 function:
where
represents the optional parameter
.
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.
-
•SmoothL loss function:
where
represents the optional parameter
.
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:
where
and
represents the optional 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.2
Optimization Problem Transformations
e04gnc 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.
12
Optional Parameters
Several optional parameters in e04gnc define choices in the problem specification or the algorithm logic. In order to reduce the number of formal arguments of e04gnc, 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
e04zmc 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.
The option values may be retrieved by
e04znc.
The following is a list of the optional parameters available. A full description of each optional parameter is provided in
Section 12.1.
12.1
Description of the Optional Parameters
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 X02AJC).
All options accept the value to return single options to their default states.
Keywords and character values are case and white space insensitive.
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
e04gnc. If this limit is reached, then the solver will terminate with
NE_TOO_MANY_ITER.
Constraint: .
NLDF Monitor Frequency | | Default |
If
, the user-supplied function
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
e04kfc and
is passed to the solver
e04kfc as
.
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
e04stc and
is passed to the solver
e04stc as
.
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 |
(See
Section 3.1.1 in the Introduction to the NAG Library CL Interface for further information on NAG data types.)
If
, the
Nag_FileID number (as returned from
x04acc) for the secondary (monitoring) output. If
, no secondary output is provided. The information output to this file ID is controlled by
.
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 .
Constraint: .
Print File | | Default
|
(See
Section 3.1.1 in the Introduction to the NAG Library CL Interface for further information on NAG data types.)
If
, the
Nag_FileID number (as returned from
x04acc,
stdout as the default) for the primary output of the solver. If
, the primary output is completely turned off independently of other settings. The information output to this unit is controlled by
.
Constraint: .
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 .
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 .
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
NE_TIME_LIMIT.
Constraint: .