tensorflow-wavenet
tensorflow-wavenet copied to clipboard
dilations in wavenet_param.json
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?