VALL-E-X
VALL-E-X copied to clipboard
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='drive.google.com', port=443): Max retries exceeded with url:
我使用的操作系统是 Ubuntu 22.04.3 LTS ,实际上也是因为windows安装不了pyopenjtalk才临时更换的。python 3.10.12。 在我运行示例代码 from utils.generation import SAMPLE_RATE, generate_audio, preload_models from scipy.io.wavfile import write as write_wav from IPython.display import Audio
download and load all models
preload_models()
generate audio from text
text_prompt = """
Hello, my name is Nose. And uh, and I like hamburger. Hahaha... But I also have other interests such as playing tactic toast. """ audio_array = generate_audio(text_prompt)
save audio to disk
write_wav("vallex_generation.wav", SAMPLE_RATE, audio_array)
play text in notebook
Audio(audio_array, rate=SAMPLE_RATE)
时,出现了如图错误
原因是没有办法连接到Google Drive,建议你检查一下梯子挂了没有
原因是没有办法连接到Google Drive,建议你检查一下梯子挂了没有
梯子挂了,我浏览器是可以打开的
在这种情况下,建议你手动从README的链接下载,然后将其放在'./checkpoints/vallex-checkpoint.pt'的位置。之后我会将该情况添加到README中,感谢你的反馈。