Visible to Intel only — GUID: GUID-5AB900B4-17BC-4F39-89DA-DCD796FA5704
Visible to Intel only — GUID: GUID-5AB900B4-17BC-4F39-89DA-DCD796FA5704
Stochastic Gradient Descent Algorithm
The stochastic gradient descent (SGD) algorithm is a special case of an iterative solver. See Iterative Solver for more details.
Computation methods
The following computation methods are available in oneDAL for the stochastic gradient descent algorithm:
Default method (a special case of mini-batch used by default)
Mini-batch method
The mini-batch method (miniBatch) of the stochastic gradient descent algorithm [Mu2014] follows the algorithmic framework of an iterative solver with an empty set of intrinsic parameters of the algorithm , algorithm-specific transformation T defined for the learning rate sequence , conservative sequence and the number of iterations in the internal loop L, algorithm-specific vector U and power d of Lebesgue space defined as follows:
For l from 1 until L:
Update the function argument:
Compute the gradient:
Convergence check:
Default method
The default method (defaultDense) is a particular case of the mini-batch method with the batch size , , and conservative sequence .
Momentum method
The momentum method (momentum) of the stochastic gradient descent algorithm [Rumelhart86] follows the algorithmic framework of an iterative solver with the set of intrinsic parameters , algorithm-specific transformation T defined for the learning rate sequence and momentum parameter , and algorithm-specific vector U and power d of Lebesgue space defined as follows:
For the momentum method of the SGD algorithm, the set of intrinsic parameters only contains the last update vector .
Convergence check:
Computation
The stochastic gradient descent algorithm is a special case of an iterative solver. For parameters, input, and output of iterative solvers, see Computation.
Algorithm Parameters
In addition to parameters of the iterative solver, the stochastic gradient descent algorithm has the following parameters. Some of them are required only for specific values of the computation method parameter method:
Parameter |
method |
Default Value |
Description |
---|---|---|---|
algorithmFPType |
defaultDense, miniBatch, momentum |
float |
The floating-point type that the algorithm uses for intermediate computations. Can be float or double. |
method |
Not applicable |
defaultDense |
Available computation methods: For CPU:
For GPU:
|
batchIndices |
defaultDense, miniBatch, momentum |
Not applicable |
The numeric table with 32-bit integer indices of terms in the objective function. The method parameter determines the size of the numeric table:
If no indices are provided, the implementation generates random indices. |
batchSize |
miniBatch,``momentum`` |
128 |
The number of batch indices to compute the stochastic gradient. If batchSize equals the number of terms in the objective function, no random sampling is performed, and all terms are used to calculate the gradient. The algorithm ignores this parameter if the batchIndices parameter is provided. For the defaultDense value of method, one term is used to compute the gradient on each iteration. |
conservativeSequence |
miniBatch |
A numeric table of size that contains the default conservative coefficient equal to 1. |
The numeric table of size or . The contents of the table depend on its size:
|
innerNIterations |
miniBatch |
5 |
The number of inner iterations for the miniBatch method. |
learningRateSequence |
defaultDense, miniBatch, momentum |
A numeric table of size that contains the default step length equal to 1. |
The numeric table of size or . The contents of the table depend on its size:
|
momentum |
momentum |
0.9 |
The momentum value. |
engine |
defaultDense, miniBatch, momentum |
SharePtr< engines:: mt19937:: Batch>() |
Pointer to the random number generator engine that is used internally for generation of 32-bit integer indices of terms in the objective function. |
Examples
C++ (CPU)
Batch Processing:
Python*
Batch Processing: