Searched refs:compute_recall (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/python/ops/ |
D | metrics_impl.py | 2178 def compute_recall(true_p, false_n, name): function 2184 return compute_recall(true_p, false_n, 'value') 2189 update_op = compute_recall(true_positives_update_op, 2619 def compute_recall(_, tp, fn): function 2623 metrics_collections, compute_recall, tp, fn) 2694 def compute_recall(tp, fn, name): function 2698 return compute_recall(values['tp'], values['fn'], 'value') 2703 update_op = compute_recall(update_ops['tp'], update_ops['fn'], 'update_op')
|