I noticed in notebooks/multilabel-classification-mscoco.ipynb, the lamhat_threshold func is:
def lamhat_threshold(lam): return false_negative_rate(cal_sgmd>=lam, cal_labels) - ((n+1)/n*alpha - 1/(n+1))
But I think it should be
def lamhat_threshold(lam): return false_negative_rate(cal_sgmd>=lam, cal_gt_masks) - ((n+1)/n*alpha - 1/n)
Just like the typo fixed in e534467 line124 shown that
def lamhat_threshold(lam): return false_negative_rate(cal_sgmd>=lam, cal_gt_masks) - ((n+1)/n*alpha - 1/n)
Can someone help me ? : )
I noticed in notebooks/multilabel-classification-mscoco.ipynb, the lamhat_threshold func is:
But I think it should be
Just like the typo fixed in e534467 line124 shown that
Can someone help me ? : )