Check if `_loss_scale` optimizer is performing loss scaling.
(self)
| 412 | return self._name |
| 413 | |
| 414 | def doing_loss_scaling(self): |
| 415 | """Check if `_loss_scale` optimizer is performing loss scaling.""" |
| 416 | return self._loss_scale is not None |
| 417 | |
| 418 | def minimize(self, loss, global_step=None, var_list=None, |
| 419 | gate_gradients=GATE_OP, aggregation_method=None, |
no outgoing calls
no test coverage detected