usernaamee / keras-wavenet

Keras implementation of deepmind's wavenet paper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Maybe this is a bug...

xiaozhah opened this issue · comments

the line in No.95

seed_audio[-1] = ampl_val_16
seed_audio[:-1] = seed_audio[1:]

should be

seed_audio[:-1] = seed_audio[1:]
seed_audio[-1] = ampl_val_16

The order can't be reverse

Thank you for noticing that.
I've fixed it.