You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
conf_mask why not use y_true mask:
if y_true[i,4]=1 , it means there have a box, and conf_mask[i]=1,
why still need to compute the IOU between y_pred with y_true box , and then judge the conf_mask through :conf_mask= conf_mask + tf.to_float(best_ious < 0.6) * (1 - y_true[..., 4])
The text was updated successfully, but these errors were encountered:
conf_mask why not use y_true mask:
if y_true[i,4]=1 , it means there have a box, and conf_mask[i]=1,
why still need to compute the IOU between y_pred with y_true box , and then judge the conf_mask through :
conf_mask= conf_mask + tf.to_float(best_ious < 0.6) * (1 - y_true[..., 4])
The text was updated successfully, but these errors were encountered: