Open ppisljar opened 1 year ago
i am guessing the reason is wrong torch version ? (for which i had to do https://github.com/anonymous-pits/pits/pull/18) i am starting this from your Dockerfile. what torch version was this tested with ?
Hi! I did exactly same version with dockerfile.
It seems that you set True
to retrun_complex
and the code is based on the spectrogram with the size [B,F,T,2]
.
Thus, your complex spectrogram remove T
instead of 2
in the line
spec = torch.sqrt(spec.pow(2).sum(-1) + 1e-6)
.
If possible, you need to downgrade torch version or change above line to
spec = torch.sqrt((spec * spec.conj()).to(torch.float) + 1e-6)
I am running into this error:
i left config unmodified but i did change the symbol file to reflect symbols from my alphabet. i also did two updates for which i submited pull requests as i coldn;t get training to start without those.