Plachtaa/VALL-E-X

requests.exceptions.ConnectionError: HTTPSConnectionPool(host='drive.google.com', port=443): Max retries exceeded with url:

Offen

#19 geöffnet am 22.08.2023

 (3 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Python (783 Forks)batch import
good first issue

Repository-Metriken

Stars
 (7.934 Sterne)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

我使用的操作系统是 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) 时,出现了如图错误 Screenshot from 2023-08-22 15-33-22 Screenshot from 2023-08-22 15-33-54

Contributor Guide