报错与解决 | AttributeError: module ‘librosa.feature‘ has no attribute ‘rmse‘
rmse → rms代码:rmse = librosa.feature.rmse(y=y)报错:AttributeError: module 'librosa.feature' has no attribute 'rmse'解决:更改代码为rmse = librosa.feature.rms(y=y)