def test_squared_error():
    """
    Testing squared error function by comparing
    to precomputed tensor.
    """
    tensor_mask = np.zeros((3, 3, 3, 3))
    tensor_mask[0, 0, 0, 0] = 1

    tensor_pred = np.zeros((3, 3, 3, 3))
    tensor_pred[:, :, :, :] = 1
    expect = np.array([26 / 27, 1.0, 1.0])
    get = label.squared_error(tensor_mask, tensor_pred)
    assert assertTensorsEqual(get, expect)
Exemple #2
0
def test_squared_error():
    """
    Testing squared error function by comparing
    to precomputed tensor.
    """
    tensor_mask = np.zeros((3, 3, 3, 3), dtype=np.float32)
    tensor_mask[0, 0, 0, 0] = 1
    tensor_mask = tf.convert_to_tensor(tensor_mask, dtype=tf.float32)

    tensor_pred = np.zeros((3, 3, 3, 3), dtype=np.float32)
    tensor_pred[:, :, :, :] = 1
    tensor_pred = tf.convert_to_tensor(tensor_pred, dtype=tf.float32)

    expect = np.array([26 / 27, 1.0, 1.0])
    get = label.squared_error(tensor_mask, tensor_pred)
    assert is_equal_tf(get, expect)