The nDCG formula may not consistent between your paper and implementation?
yuukiyamanaka opened this issue · 2 comments
yuukiyamanaka commented
Hello, I read your paper(TOIS) and your implementation.
I have a question about your implementation of the formula of nDCG.
In your paper, you write the formula of nDCG using log2 (logarithmic base is 2), but in your implementation I think you use np.log (logarithmic base is natural logarithm). (c.g., L209 or L303 in code/ENMF.py)
Should you use np.log2 in your implementation for consistency?
Anyway, thank you for putting together a good paper and implementation!
chenchongthu commented
This is a very easy transformation:
logM N=loga M/loga N
yuukiyamanaka commented
opps, I understand. Thank you.