Tacotron-2
Tacotron-2 copied to clipboard
LWS problem
In hparams, parameters related to the 'lws' are set like as below
use_lws=True n_fft = 1024 hop_size = 256 win_size = 1024
But, 'TypeError: init() got an unexpected keyword argument 'fftsize'' is arised when the preprocessing for training is commanded.
Is there any solution to address this issues?
You might be calling an argument named 'fftsize' which does not exist. (I think it is a param of a class or function)
trace your error logs, find it and take a look
I update lws from version 1.0 to 1.2, then the problem disappeared.
How to PIP install LWS for window?