Type MixedPrecisionLossScaleOptimizer
Namespace tensorflow.train.experimental
Parent Optimizer
Interfaces IMixedPrecisionLossScaleOptimizer
An optimizer that applies loss scaling. Loss scaling is a process that multiplies the loss by a multiplier called the
loss scale, and divides each gradient by the same multiplier. The pseudocode
for this process is: ```
loss =...
loss *= loss_scale
grads = gradients(loss, vars)
grads /= loss_scale
``` Mathematically, loss scaling has no effect, but can help avoid numerical
underflow in intermediate gradients when float16 tensors are used for mixed
precision training. By multiplying the loss, each intermediate gradient will
have the same multiplier applied. The loss scale can either be a fixed constant, chosen by the user, or be
dynamically determined. Dynamically determining the loss scale is convenient
as a loss scale does not have to be explicitly chosen. However it reduces
performance. This optimizer wraps another optimizer and applies loss scaling to it via a
`LossScale`. Loss scaling is applied whenever gradients are
computed, such as through `minimize()`.