vvolhejn / thesis

ETH Zürich MSc Thesis: Accelerating Neural Audio Synthesis
Apache License 2.0
17 stars 1 forks source link

Make convolutions in DilatedConvDecoder causal #28

Closed vvolhejn closed 2 years ago

vvolhejn commented 2 years ago

I think currently the convolutions are also looking ahead in time, which is not desirable for real-time applications.

Compare with this WaveNet implementation which takes special care to add non-symmetric padding to make the network causal.

vvolhejn commented 2 years ago

Done.