aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/periodic_resample/python/kernel_tests/periodic_resample_op_test.py
blob: 9a1950227665b18c3a5b9b73128a57a4b0673a89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# =============================================================================
# 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.
# =============================================================================

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import numpy

from tensorflow.contrib.periodic_resample import periodic_resample
from tensorflow.python.framework import dtypes
from tensorflow.python.framework import errors_impl
from tensorflow.python.framework import test_util
from tensorflow.python.ops import array_ops
from tensorflow.python.ops import gradient_checker
from tensorflow.python.ops import variables
from tensorflow.python.platform import googletest


class PeriodicResampleTest(test_util.TensorFlowTestCase):

  def testPeriodicResampleBasic2D(self):

    input_tensor = numpy.arange(12).reshape((3, 4))
    desired_shape = numpy.array([6, None])
    output_tensor = input_tensor.reshape((6, 2))

    with self.cached_session():
      variables.global_variables_initializer().run()
      result = periodic_resample(input_tensor, desired_shape).eval()
      self.assertAllEqual(result, output_tensor)

  def testPeriodicResampleTruncatedBasic2D(self):

    input_tensor = numpy.arange(12).reshape((3, 4))
    desired_shape = numpy.array([5, None])
    output_tensor = input_tensor.reshape((6, 2))[:-1]

    with self.cached_session():
      variables.global_variables_initializer().run()
      result = periodic_resample(input_tensor, desired_shape).eval()
      self.assertAllEqual(result, output_tensor)

  def testPeriodicResampleBasic3D(self):

    input_tensor = numpy.arange(2 * 2 * 4).reshape((2, 2, 4))
    desired_shape = numpy.array([4, 4, None])
    output_tensor = numpy.array([[[0], [2], [4], [6]], [[1], [3], [5], [7]],
                                 [[8], [10], [12], [14]], [[9], [11], [13],
                                                           [15]]])

    # NOTE: output_tensor != input_tensor.reshape((4, 4, -1))
    with self.cached_session():
      variables.global_variables_initializer().run()
      result = periodic_resample(input_tensor, desired_shape).eval()
      # input_tensor[0, 0, 0] == result[0, 0, 0]
      # input_tensor[0, 0, 1] == result[1, 0, 0]
      # input_tensor[0, 0, 2] == result[0, 1, 0]
      # input_tensor[0, 0, 3] == result[1, 1, 0]
      self.assertAllEqual(result, output_tensor)

  def testPeriodicResampleBasic4D(self):

    input_tensor = numpy.arange(2 * 2 * 2 * 8).reshape((2, 2, 2, 8))
    desired_shape = numpy.array([4, 4, 4, None])
    output_tensor = numpy.array(
        [[[[0], [4], [8], [12]], [[2], [6], [10], [14]],
          [[16], [20], [24], [28]], [[18], [22], [26], [30]]],
         [[[1], [5], [9], [13]], [[3], [7], [11], [15]], [[17], [21], [25],
                                                          [29]],
          [[19], [23], [27],
           [31]]], [[[32], [36], [40], [44]], [[34], [38], [42], [46]],
                    [[48], [52], [56], [60]], [[50], [54], [58], [62]]],
         [[[33], [37], [41], [45]], [[35], [39], [43], [47]],
          [[49], [53], [57], [61]], [[51], [55], [59], [63]]]])

    # NOTE: output_tensor != input_tensor.reshape((4, 4, 4, -1))
    with self.cached_session():
      variables.global_variables_initializer().run()
      result = periodic_resample(input_tensor, desired_shape).eval()
      self.assertAllEqual(result, output_tensor)

  def testPeriodicResampleErrors(self):
    input_tensor = numpy.zeros(shape=[1, 2, 2, 4])
    with self.cached_session():
      with self.assertRaisesWithPredicateMatch(
          errors_impl.InvalidArgumentError,
          'Dimension 3 input tensor has size 4, desired shape has size 1'):
        periodic_resample(input_tensor, [None, 4, 4, 1]).eval()
      with self.assertRaisesWithPredicateMatch(
          errors_impl.InvalidArgumentError,
          '4, to be the same as the length of the desired shape, 3'):
        periodic_resample(input_tensor, [None, 4, 4]).eval()

  def testPeriodicResampleGradient(self):
    desired_shape = numpy.array([4, 4, None])
    result_shape = (4, 4, 1)
    input_shape = (2, 2, 4)
    with self.cached_session() as sess:
      x = array_ops.placeholder(dtypes.float32, shape=input_shape)
      output = periodic_resample(x, desired_shape)
      error = gradient_checker.compute_gradient_error(
          x, input_shape, output, result_shape)
      self.assertLess(error, 1e-4)

  def testPeriodicResampleShapeInference(self):
    with self.cached_session() as sess:
      # Case 1: output shape can be fully inferreed.
      x = array_ops.placeholder(dtypes.float32, shape=(2, 2, 4))
      output = periodic_resample(x, [4, 4, None])
      self.assertEqual(output.shape, [4, 4, 1])
      # Case 2: output shape can not be inferred - report desired shape.
      x = array_ops.placeholder(dtypes.float32, shape=(2, 2, None))
      output = periodic_resample(x, [4, 4, None])
      self.assertTrue(output.shape.is_compatible_with([4, 4, None]))
      self.assertEqual(output.shape[2].value, None)


if __name__ == '__main__':
  googletest.main()