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
The rank is calculated as "rank = (predicts < scores).sum(-1).float()" in line 95 of utils.py.
Should "<" be replaced with "<=" to avoid the rank being 0 when all scores are the same value?
The rank is calculated as "rank = (predicts < scores).sum(-1).float()" in line 95 of utils.py.
Should "<" be replaced with "<=" to avoid the rank being 0 when all scores are the same value?