W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
tf.metrics.recall_at_thresholds(
labels,
predictions,
thresholds,
weights=None,
metrics_collections=None,
updates_collections=None,
name=None
)
定義在:tensorflow/python/ops/metrics_impl.py.
用于計(jì)算predictions上不同的thresholds的各種recall值.
該recall_at_thresholds函數(shù)為各種閾值創(chuàng)建了四個(gè)局部變量:true_positives,true_negatives,false_positives和false_negatives值.recall[i]被定義為大于thresholds[i]的predictions的值的總權(quán)重,其中它在labels的相應(yīng)的條目是True,除以labels中的True值的總權(quán)重,即:(true_positives[i] / (true_positives[i] + false_negatives[i])
)
為了估計(jì)數(shù)據(jù)流上的度量,該函數(shù)創(chuàng)建一個(gè)update_op操作來更新這些變量并返回recall.
如果weights是None,則權(quán)重默認(rèn)為1,使用權(quán)重0來屏蔽值.
參數(shù):
返回:
可能引發(fā)的異常:
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: