Plachtaa/VALL-E-X
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='drive.google.com', port=443): Max retries exceeded with url:
Open
#19 opened on Aug 22, 2023
good first issue
Repository metrics
- Stars
- (7,934 stars)
- PR merge metrics
- (No merged PRs in 30d)
Description
我使用的操作系统是 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)
时,出现了如图错误