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
It's a trick to prevent early satisfaction of max(hard_positives - hard_negatives + margin, 0) in hard triplet loss.
Instead, it does log1p(exp(hard_positives - hard_negatives)), i.e., softplus, hence the name.
The text was updated successfully, but these errors were encountered:
It's a trick to prevent early satisfaction of
max(hard_positives - hard_negatives + margin, 0)
in hard triplet loss.Instead, it does
log1p(exp(hard_positives - hard_negatives))
, i.e., softplus, hence the name.The text was updated successfully, but these errors were encountered: