remove the added api on loss_scale
This commit is contained in:
parent
df6e5c6b59
commit
ce592f32ee
@ -197,10 +197,6 @@ class LossScale(trackable.Trackable):
|
||||
"""Creates the LossScale from its config."""
|
||||
return cls(**config)
|
||||
|
||||
def variables(self):
|
||||
"""Returns the variables defined in this LossScale."""
|
||||
return list(self._weights.values())
|
||||
|
||||
|
||||
def get_loss_scale_weights(loss_scale):
|
||||
return loss_scale._weights.values() # pylint: disable=protected-access
|
||||
|
@ -246,4 +246,5 @@ class MixedPrecisionLossScaleOptimizer(optimizer.Optimizer):
|
||||
|
||||
def variables(self):
|
||||
"""Returns the variables of the Optimizer."""
|
||||
return self._optimizer.variables() + self._loss_scale.variables()
|
||||
return self._optimizer.variables() + \
|
||||
list(self._loss_scale._weights.values()) # pylint: disable=protected-access
|
||||
|
Loading…
Reference in New Issue
Block a user