Searched refs:y_expected (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/tools/ |
D | saved_model_cli_test.py | 358 y_expected = np.array([[6.0], [4.0]]) 359 self.assertAllEqual(y_expected, y_actual) 379 y_expected = np.array([[3.5], [4.0]]) 380 self.assertAllClose(y_expected, y_actual) 400 y_expected = np.array([[2.5], [3.0]]) 401 self.assertAllClose(y_expected, y_actual) 420 y_expected = np.array([[2.5], [3.0]]) 421 self.assertAllClose(y_expected, y_actual) 525 y_expected = np.array([[2.5], [3.0]]) 526 self.assertAllClose(y_expected, y_actual)
|
/external/tensorflow/tensorflow/python/keras/layers/ |
D | wrappers_test.py | 446 y_expected = _to_list(merge_func(f_forward(x)[0], f_backward(x)[0])) 447 assert len(y_merged) == len(y_expected) 448 for x1, x2 in zip(y_merged, y_expected): 465 y_expected = _to_list(merge_func(y_forward[0], y_backward[0])) 466 assert len(y_merged) == len(y_expected) + n_states * 2 467 for x1, x2 in zip(y_merged, y_expected):
|
/external/tensorflow/tensorflow/contrib/integrate/python/ops/ |
D | odes_test.py | 231 y_expected = f(times) 234 self.assertAllClose(y_expected, y_actual)
|
/external/tensorflow/tensorflow/core/framework/ |
D | tensor_test.cc | 1050 Tensor y_expected(DT_COMPLEX64, TensorShape({8})); in TEST() local 1052 y_expected.vec<complex64>()(i) = MathUtil::IPow(rotate_45, i + 1); in TEST() 1054 test::ExpectTensorNear<complex64>(y, y_expected, 1e-5); in TEST() 1099 Tensor y_expected(DT_COMPLEX128, TensorShape({8})); in TEST() local 1101 y_expected.vec<complex128>()(i) = MathUtil::IPow(rotate_45, i + 1); in TEST() 1103 test::ExpectTensorNear<complex128>(y, y_expected, 1e-5); in TEST()
|