Searched defs:compute_recall (Results 1 - 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
H A Dmetrics_impl.py2057 def compute_recall(true_p, false_n, name): function in function:recall
2062 rec = compute_recall(true_p, false_n, 'value')
2063 update_op = compute_recall(true_positives_update_op,
2569 def compute_recall(tp, fn, name): function in function:recall_at_thresholds
2572 rec = compute_recall(values['tp'], values['fn'], 'value')
2573 update_op = compute_recall(update_ops['tp'], update_ops['fn'], 'update_op')

Completed in 165 milliseconds