1. Change all test_util.run_all_in_graph_and_eager_modes to combination. 2. Replace import tensorflow.python.keras with explicit module import. 3. Update BUILD file to not rely on the overall Keras target. PiperOrigin-RevId: 299403937 Change-Id: Ic798fd0cc2602b6447aaf28922a4a418514d7131
115 lines
4.1 KiB
Python
115 lines
4.1 KiB
Python
# Copyright 2016 The TensorFlow 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 Keras weights constraints."""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
import math
|
|
|
|
import numpy as np
|
|
|
|
from tensorflow.python.keras import backend
|
|
from tensorflow.python.keras import combinations
|
|
from tensorflow.python.keras import constraints
|
|
from tensorflow.python.platform import test
|
|
|
|
|
|
def get_test_values():
|
|
return [0.1, 0.5, 3, 8, 1e-7]
|
|
|
|
|
|
def get_example_array():
|
|
np.random.seed(3537)
|
|
example_array = np.random.random((100, 100)) * 100. - 50.
|
|
example_array[0, 0] = 0. # 0 could possibly cause trouble
|
|
return example_array
|
|
|
|
|
|
def get_example_kernel(width):
|
|
np.random.seed(3537)
|
|
example_array = np.random.rand(width, width, 2, 2)
|
|
return example_array
|
|
|
|
|
|
@combinations.generate(combinations.combine(mode=['graph', 'eager']))
|
|
class KerasConstraintsTest(test.TestCase):
|
|
|
|
def test_serialization(self):
|
|
all_activations = ['max_norm', 'non_neg',
|
|
'unit_norm', 'min_max_norm']
|
|
for name in all_activations:
|
|
fn = constraints.get(name)
|
|
ref_fn = getattr(constraints, name)()
|
|
assert fn.__class__ == ref_fn.__class__
|
|
config = constraints.serialize(fn)
|
|
fn = constraints.deserialize(config)
|
|
assert fn.__class__ == ref_fn.__class__
|
|
|
|
def test_max_norm(self):
|
|
array = get_example_array()
|
|
for m in get_test_values():
|
|
norm_instance = constraints.max_norm(m)
|
|
normed = norm_instance(backend.variable(array))
|
|
assert np.all(backend.eval(normed) < m)
|
|
|
|
# a more explicit example
|
|
norm_instance = constraints.max_norm(2.0)
|
|
x = np.array([[0, 0, 0], [1.0, 0, 0], [3, 0, 0], [3, 3, 3]]).T
|
|
x_normed_target = np.array(
|
|
[[0, 0, 0], [1.0, 0, 0], [2.0, 0, 0],
|
|
[2. / np.sqrt(3), 2. / np.sqrt(3), 2. / np.sqrt(3)]]).T
|
|
x_normed_actual = backend.eval(norm_instance(backend.variable(x)))
|
|
self.assertAllClose(x_normed_actual, x_normed_target, rtol=1e-05)
|
|
|
|
def test_non_neg(self):
|
|
non_neg_instance = constraints.non_neg()
|
|
normed = non_neg_instance(backend.variable(get_example_array()))
|
|
assert np.all(np.min(backend.eval(normed), axis=1) == 0.)
|
|
|
|
def test_unit_norm(self):
|
|
unit_norm_instance = constraints.unit_norm()
|
|
normalized = unit_norm_instance(backend.variable(get_example_array()))
|
|
norm_of_normalized = np.sqrt(np.sum(backend.eval(normalized)**2, axis=0))
|
|
# In the unit norm constraint, it should be equal to 1.
|
|
difference = norm_of_normalized - 1.
|
|
largest_difference = np.max(np.abs(difference))
|
|
assert np.abs(largest_difference) < 10e-5
|
|
|
|
def test_min_max_norm(self):
|
|
array = get_example_array()
|
|
for m in get_test_values():
|
|
norm_instance = constraints.min_max_norm(min_value=m, max_value=m * 2)
|
|
normed = norm_instance(backend.variable(array))
|
|
value = backend.eval(normed)
|
|
l2 = np.sqrt(np.sum(np.square(value), axis=0))
|
|
assert not l2[l2 < m]
|
|
assert not l2[l2 > m * 2 + 1e-5]
|
|
|
|
def test_conv2d_radial_constraint(self):
|
|
for width in (3, 4, 5, 6):
|
|
array = get_example_kernel(width)
|
|
norm_instance = constraints.radial_constraint()
|
|
normed = norm_instance(backend.variable(array))
|
|
value = backend.eval(normed)
|
|
assert np.all(value.shape == array.shape)
|
|
assert np.all(value[0:, 0, 0, 0] == value[-1:, 0, 0, 0])
|
|
assert len(set(value[..., 0, 0].flatten())) == math.ceil(float(width) / 2)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
test.main()
|