Open tian1327 opened 7 months ago
Thanks for the great work! There is a minor bug here: pred[probs < threshold] = 0 should be pred[max_prob < threshold] = 0.
pred[probs < threshold] = 0
pred[max_prob < threshold] = 0
Thanks for the great work! There is a minor bug here:
pred[probs < threshold] = 0
should bepred[max_prob < threshold] = 0
.