Hi guys,
Thanks for your work on this project.
I used phaseaug in my vocoder which worked well.
but when I compile the whole model in pytorch 2 and get something wrong.
I minify the codes:
phaseaug = PhaseAug()
compiled_phaseaug = torch.compile(phaseaug.forward_sync)
wav = torch.randn([32, 1, 9600])
compiled_phaseaug(wav, wav)
Do you have any ideas about that?