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