Closed wade3han closed 5 years ago
Hi @wade3han,
Thanks for picking that up. It is indeed a bug, should have been:
wav = wav / np.abs(wav).max() * 0.999
I don't think it makes a difference at the end of the day because the mu-law
quantization would probably quantize the wav to the same values but I should fix it anyway.
Hello.
In
preprocess.py
line 17,I'm wondering why you choose to use
* 0.999
. It leadswav
to have value which gets over 1.0. Is it bug or intended code?Thanks.