mx.symbol.mp_sgd_mom_update
¶
Description¶
mp_sgd_mom_update:Updater function for multi-precision sgd optimizer
Usage¶
mx.symbol.mp_sgd_mom_update(...)
Arguments¶
Argument |
Description |
---|---|
|
NDArray-or-Symbol. Weight |
|
NDArray-or-Symbol. Gradient |
|
NDArray-or-Symbol. Momentum |
|
NDArray-or-Symbol. Weight32 |
|
float, required. Learning rate |
|
float, optional, default=0. The decay rate of momentum estimates at each epoch. |
|
float, optional, default=0. Weight decay augments the objective function with a regularization term that penalizes large weights. The penalty scales with the square of the magnitude of each weight. |
|
float, optional, default=1. Rescale gradient to grad = rescale_grad*grad. |
|
float, optional, default=-1. Clip gradient to the range of [-clip_gradient, clip_gradient] If clip_gradient <= 0, gradient clipping is turned off. grad = max(min(grad, clip_gradient), -clip_gradient). |
|
boolean, optional, default=1. If true, lazy updates are applied if gradient’s stype is row_sparse and both weight and momentum have the same stype |
|
string, optional. Name of the resulting symbol. |
Value¶
out
The result mx.symbol