Plachtaa/VALL-E-X

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

オープン

#19 opened on 2023/08/22

 (3 件のコメント) (0 件のリアクション) (0 人の担当者)Python (781 件のフォーク)batch import
good first issue

Repository metrics

Stars
 (7,931 個のスター)
PR merge metrics
 (PR metrics pending)

説明

我使用的操作系统是 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

コントリビューターガイド