Hey everyone. I was just looking through the implementation of the similarity metric in pitch domain, and it seems to differ from the one provided in Eq. 4 in the paper.
Paper: exp(ln(0.05)(gt-pred)^2/t^2) = 0.05^((gt-pred)^2/t^2)
Code: exp(-0.5(gt-pred)^2/t^2)
Is there any reason for this?
Thanks in advance!