tensorflow-wavenet icon indicating copy to clipboard operation
tensorflow-wavenet copied to clipboard

dilations in wavenet_param.json

Open james-wynne-dev opened this issue 7 years ago • 0 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?

james-wynne-dev avatar Aug 04 '18 18:08 james-wynne-dev