python==3.7.12 torch==1.13.1 modelscope==1..3 针对于这个模型:https://modelscope.cn/models/damo/speech_sambert-hifigan_tts_zhiyan_emo_zh-cn_16k/summary 在本地运行官网所提供的范例,出现了如下报错,请问是什么问题呢? 报错信息如下:
AttributeError: type object 'OutputKeys' has no attribute 'OUTPUT_WAV'
这个错误可能是由于您在代码中使用了过时的 OutputKeys 类而不是最新版本的类导致的。最新版本的 OutputKeys 类中的常量名称可能已更改,因此旧版本的代码可能无法找到它们。
解决此问题的方法是更新您的代码以使用最新版本的 OutputKeys 类。您可以从 ModelScope 的 GitHub 仓库中下载最新版本的代码,并将其替换您的本地代码中的旧版本类。如果您已经更新了 ModelScope 的版本,则应该可以找到最新版本的 OutputKeys 类。
请更新modelscope版本到最新,并使用https://modelscope.cn/models/damo/speech_sambert-hifigan_tts_zhiyan_emo_zh-cn_16k/summary下最新sample code进行尝试