【debug】TypeError: mel() takes 0 positional arguments but 2 positional arguments (and 3 keyword解决

# code
librosa.filters.mel(hparams.sample_rate,
                               hparams.n_fft,
                               n_mels=hparams.acoustic_dim,
                               fmin=hparams.fmin,
                               fmax=hparams.fmax)

报错,TypeError: mel() takes 0 positional arguments but 2 positional arguments (and 3 keyword-only arguments) were given。
经查是librosa版本问题。原版本0.9.0,改成0.7.1后,问题解决。

pip uninstall librosa
pip install librosa==0.7.1 -i https://pypi.tuna.tsinghua.edu.cn/simple

你可能感兴趣的:(debug,python)