usernaamee / keras-wavenet

Keras implementation of deepmind's wavenet paper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Did you implement the causal convolution part mentioned in the WaveNet paper?

zizyzhang opened this issue · comments

commented

I noticed that you are using 'AtrousConvolution1D' in the WaveNet block, but is this function also implement causal convolution? Thx.

Actually, it has to be atrous as well as causal. Atrous (dilated) convolution is the powerful idea which makes it possible to train wavenet by significantly reducing the number of parameters.