Example #1
0
 def _error_function(self):
     x = random_ops.random_uniform((2, 10))
     y = random_ops.random_uniform((10, 2))
     check_ops.assert_non_positive_v2(
         math_ops.reduce_sum(math_ops.matmul(x, y)))
     self.iteration.assign_add(1.0)
     return self.iteration
Example #2
0
 def error_function():
   x = random_ops.random_uniform((2, 10))
   y = random_ops.random_uniform((10, 2))
   check_ops.assert_non_positive_v2(
       math_ops.reduce_sum(math_ops.matmul(x, y)))
   return x