-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tensorflow op that scales gradient for backwards pass.
PiperOrigin-RevId: 267388219 Change-Id: I9f55ff9c47de88653d9214563e433f2a27645acd
- Loading branch information
1 parent
eadee4d
commit ecf4e35
Showing
5 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright 2019 The Sonnet Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ============================================================================ | ||
"""Tensorflow op that scales gradient for backwards pass.""" | ||
|
||
from __future__ import absolute_import | ||
from __future__ import division | ||
# from __future__ import google_type_annotations | ||
from __future__ import print_function | ||
|
||
import tensorflow as tf | ||
|
||
|
||
@tf.custom_gradient | ||
def scale_gradient(t, scale): | ||
"""Scales gradients for the backwards pass. | ||
Args: | ||
t: A Tensor. | ||
scale: The scale factor for the gradient on the backwards pass. | ||
Returns: | ||
A Tensor same as input, with scaled backward gradient. | ||
""" | ||
def grad(dy): | ||
"""Scaled gradient.""" | ||
return scale*dy, None | ||
return t, grad | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright 2019 The Sonnet Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ============================================================================ | ||
"""Tests for sonnet.v2.src.scale_gradient.""" | ||
from __future__ import absolute_import | ||
from __future__ import division | ||
from __future__ import print_function | ||
|
||
import itertools | ||
|
||
from absl.testing import parameterized | ||
from sonnet.src import scale_gradient | ||
from sonnet.src import test_utils | ||
import tensorflow as tf | ||
|
||
|
||
class ScaleGradientTest(test_utils.TestCase, parameterized.TestCase): | ||
|
||
@parameterized.parameters( | ||
*itertools.product([-1.0, 0.0, 1.0], [-0.5, 0.0, 0.5, 2.0]) | ||
) | ||
def test_scale(self, t_, scale): | ||
t = tf.Variable([t_]) | ||
with tf.GradientTape() as tape: | ||
y = scale_gradient.scale_gradient(t, scale) | ||
output = y * y | ||
grad = tape.gradient(output, t) | ||
self.assertAllEqual(grad.numpy(), [2*t_*scale]) | ||
self.assertAllEqual(output.numpy(), [t_**2]) | ||
|
||
if __name__ == "__main__": | ||
# tf.enable_v2_behavior() | ||
tf.test.main() |