HomeSort by relevance Sort by last modified time
    Searched refs:truth_values (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/python/kernel_tests/
edit_distance_op_test.py 100 truth_values = [0, 1, 1]
106 truth=(truth_indices, truth_values, truth_shape),
115 truth_values = [1, 2, 1, -1]
121 truth=(truth_indices, truth_values, truth_shape),
134 truth_values = [x for x in "altruistic"] + [x for x in "algorithm"]
141 truth=(truth_indices, truth_values, truth_shape),
147 truth=(truth_indices, truth_values, truth_shape),
156 truth_values = [0, 1, 1]
165 truth=(truth_indices, truth_values, truth_shape),
174 truth_values = [0
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
edit_distance_op.cc 41 const Tensor& truth_indices, const Tensor& truth_values,
55 if (!TensorShapeUtils::IsVector(truth_values.shape()))
57 "truth_values should be a vector, but got shape: ",
58 truth_values.shape().DebugString());
108 const Tensor* truth_values; variable
114 OP_REQUIRES_OK(ctx, ctx->input("truth_values", &truth_values));
119 *hypothesis_shape, *truth_indices, *truth_values,
138 sparse::SparseTensor truth(*truth_indices, *truth_values, truth_st_shape,

Completed in 58 milliseconds