AttributeError: module 'torchaudio.functional' has no attribute 'compute_kaldi_pitch'
时间: 2023-12-09 08:36:43 浏览: 334
AttributeError: module 'tensorflow.compat.v1' has no attribute '
您遇到的问题是:AttributeError: module 'torchaudio.functional' has no attribute 'compute_kaldi_pitch'。这个错误通常是因为您使用的torchaudio版本不支持compute_kaldi_pitch函数。您可以尝试更新torchaudio版本或者使用其他函数来代替compute_kaldi_pitch函数。
以下是一些可能有用的解决方法:
1. 检查您使用的torchaudio版本是否支持compute_kaldi_pitch函数。您可以在官方文档中查找该函数的支持版本。
2. 尝试更新torchaudio版本。您可以使用以下命令更新torchaudio:
```shell
pip install torchaudio --upgrade
```
3. 如果更新torchaudio版本无效,您可以尝试使用其他函数来代替compute_kaldi_pitch函数。例如,您可以使用torchaudio.functional.compute_fbank函数来计算滤波器组的能量。
阅读全文