ibab / tensorflow-wavenet

A TensorFlow implementation of DeepMind's WaveNet paper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dilations in wavenet_param.json

james-wynne-dev opened this issue · comments

I'm confused as to this parameter listed in wavenet_params.json

"dilations": [1, 2, 4, 8, 16, 32, 64, 128, 256, 512,
              1, 2, 4, 8, 16, 32, 64, 128, 256, 512,
              1, 2, 4, 8, 16, 32, 64, 128, 256, 512,
              1, 2, 4, 8, 16, 32, 64, 128, 256, 512,
              1, 2, 4, 8, 16, 32, 64, 128, 256, 512],

Why are the dilation factors listed 5 times? There are lots of places in the code, for example line 407 in model.py, where this would cause an incorrect result, and in fact the correct result would be given by dilations = [1, 2, 4, 8, 16, 32, 64, 128, 256, 512]. Am I missing something?