HomeSort by relevance Sort by last modified time
    Searched full:is_correct (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/contrib/metrics/python/metrics/
classification.py 57 is_correct = math_ops.cast(
60 is_correct = math_ops.multiply(is_correct, weights)
61 num_values = math_ops.multiply(weights, array_ops.ones_like(is_correct))
62 return math_ops.div(math_ops.reduce_sum(is_correct),
64 return math_ops.reduce_mean(is_correct)
  /external/tensorflow/tensorflow/python/ops/
metrics_impl.py 363 Internally, an `is_correct` operation computes a `Tensor` with elements 1.0
366 product of `weights` and `is_correct`, and it increments `count` with the
406 is_correct = math_ops.to_float(math_ops.equal(predictions, labels))
407 return mean(is_correct, weights, metrics_collections, updates_collections,
    [all...]
  /external/tensorflow/tensorflow/contrib/metrics/python/ops/
metric_ops.py 361 Internally, an `is_correct` operation computes a `Tensor` with elements 1.0
364 product of `weights` and `is_correct`, and it increments `count` with the
    [all...]

Completed in 520 milliseconds