Visible to Intel only — GUID: GUID-F6285D57-4A72-4B68-8F59-41E49C9ED597
Visible to Intel only — GUID: GUID-F6285D57-4A72-4B68-8F59-41E49C9ED597
Stochastic Average Gradient Accelerated Method
The Stochastic Average Gradient Accelerated (SAGA) [Defazio2014] follows the algorithmic framework of an iterative solver with one exception.
The default method (defaultDense) of SAGA algorithm is a particular case of the iterative solver method with the batch size .
Details
Algorithmic-specific transformation T, the set of intrinsic parameters defined for the learning rate , and algorithm-specific vector U and power d of Lebesgue space are defined as follows:
is a matrix of the gradients of smooth terms at point , where
t is defined by the number of iterations the solver runs
stores the gradient of
:
Update of the set of intrinsic parameters :
Convergence checks:
,
,
Computation
The stochastic average gradient (SAGA) algorithm is a special case of an iterative solver. For parameters, input, and output of iterative solvers, see Iterative Solver > Computation.
Algorithm Input
In addition to the input of the iterative solver, the SAGA optimization solver has the following optional input:
OptionalDataID |
Default Value |
Description |
gradientTable |
Not applicable |
A numeric table of size which represents matrix that contains gradients of , at the initial point . This input is optional: if the user does not provide the table of gradients for , , the library will compute it inside the SAGA algorithm.
NOTE:
This parameter can be an object of any class derived from NumericTable, except for PackedTriangularMatrix, PackedSymmetricMatrix, and CSRNumericTable.
|
Algorithm Parameters
In addition to parameters of the iterative solver, the SAGA optimization solver has the following parameters:
Parameter |
Default Value |
Description |
---|---|---|
algorithmFPType |
float |
The floating-point type that the algorithm uses for intermediate computations. Can be float or double. |
method |
defaultDense |
Performance-oriented method. |
batchIndices |
1 |
A numeric table of size with 32-bit integer indices of terms in the objective function. If no indices are provided, the implementation generates random index on each iteration.
NOTE:
This parameter can be an object of any class derived from NumericTable, except for PackedTriangularMatrix, PackedSymmetricMatrix, and CSRNumericTable.
|
learningRateSequence |
Not applicable |
The numeric table of size or that contains learning rate for each iterations is first case, otherwise constant step length will be used for all iterations. It is recommended to set diminishing learning rate sequence. If learningRateSequence is not provided, the learning rate will be computed automatically via constantOfLipschitz Result ID.
NOTE:
This parameter can be an object of any class derived from NumericTable, except for PackedTriangularMatrix, PackedSymmetricMatrix, and CSRNumericTable.
|
engine |
SharedPtr<engines::mt19937::Batch<> |
Pointer to the random number generator engine that is used internally for generation of 32-bit integer index of term in the objective function. |
Algorithm Output
In addition to the output of the iterative solver, the SAGA optimization solver calculates the following optional result:
OptionalDataID |
Default Value |
Description |
gradientTable |
Not applicable |
A numeric table of size that represents matrix updated after all iterations. This parameter can be an object of any class derived from NumericTable, except for PackedTriangularMatrix, PackedSymmetricMatrix, and CSRNumericTable. |
Examples
C++ (CPU)
Batch Processing:
Python*
Batch Processing: