optimizer_loss_scale {keras3} | R Documentation |
An optimizer that dynamically scales the loss to prevent underflow.
Description
Loss scaling is a technique to prevent numeric underflow in intermediate gradients when float16 is used. To prevent underflow, the loss is multiplied (or "scaled") by a certain factor called the "loss scale", which causes intermediate gradients to be scaled by the loss scale as well. The final gradients are divided (or "unscaled") by the loss scale to bring them back to their original value.
LossScaleOptimizer
wraps another optimizer and applies dynamic loss
scaling to it. This loss scale is dynamically updated over time as follows:
On any train step, if a nonfinite gradient is encountered, the loss scale is halved, and the train step is skipped.
If
dynamic_growth_steps
have ocurred since the last time the loss scale was updated, and no nonfinite gradients have occurred, the loss scale is doubled.
Usage
optimizer_loss_scale(
inner_optimizer,
initial_scale = 32768,
dynamic_growth_steps = 2000L,
...,
name = NULL,
weight_decay = NULL,
clipnorm = NULL,
clipvalue = NULL,
global_clipnorm = NULL,
use_ema = NULL,
ema_momentum = NULL,
ema_overwrite_frequency = NULL,
loss_scale_factor = NULL,
gradient_accumulation_steps = NULL
)
Arguments
inner_optimizer |
The keras |
initial_scale |
Float. The initial loss scale. This scale will be updated during training. It is recommended for this to be a very high number, because a loss scale that is too high gets lowered far more quickly than a loss scale that is too low gets raised. |
dynamic_growth_steps |
Int. How often to update the scale upwards. After
every |
... |
For forward/backward compatability. |
name |
String. The name to use for momentum accumulator weights created by the optimizer. |
weight_decay |
Float. If set, weight decay is applied. |
clipnorm |
Float. If set, the gradient of each weight is individually clipped so that its norm is no higher than this value. |
clipvalue |
Float. If set, the gradient of each weight is clipped to be no higher than this value. |
global_clipnorm |
Float. If set, the gradient of all weights is clipped so that their global norm is no higher than this value. |
use_ema |
Boolean, defaults to |
ema_momentum |
Float, defaults to 0.99. Only used if |
ema_overwrite_frequency |
Int or |
loss_scale_factor |
Float or |
gradient_accumulation_steps |
Int or |
Value
an Optimizer
instance
See Also
Other optimizers:
optimizer_adadelta()
optimizer_adafactor()
optimizer_adagrad()
optimizer_adam()
optimizer_adam_w()
optimizer_adamax()
optimizer_ftrl()
optimizer_lion()
optimizer_nadam()
optimizer_rmsprop()
optimizer_sgd()