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

  /external/tensorflow/tensorflow/python/kernel_tests/
edit_distance_op_test.py 99 truth_indices = [[0, 0], [1, 0], [1, 1]]
106 truth=(truth_indices, truth_values, truth_shape),
114 truth_indices = [[0, 0], [0, 1], [1, 0], [1, 1]]
121 truth=(truth_indices, truth_values, truth_shape),
132 truth_indices = ([[0, i] for i, _ in enumerate("altruistic")] +
141 truth=(truth_indices, truth_values, truth_shape),
147 truth=(truth_indices, truth_values, truth_shape),
155 truth_indices = [[0, 1, 0], [1, 0, 0], [1, 1, 0]]
165 truth=(truth_indices, truth_values, truth_shape),
173 truth_indices = [[0, 0]
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
edit_distance_op.cc 41 const Tensor& truth_indices, const Tensor& truth_values,
47 if (!TensorShapeUtils::IsMatrix(truth_indices.shape()))
49 "truth_indices should be a matrix, but got shape: ",
50 truth_indices.shape().DebugString());
78 if (truth_shape.NumElements() != truth_indices.dim_size(1))
81 "#cols(truth_indices), their shapes are: ",
83 truth_indices.shape().DebugString());
107 const Tensor* truth_indices; variable
113 OP_REQUIRES_OK(ctx, ctx->input("truth_indices", &truth_indices));
    [all...]

Completed in 1970 milliseconds