Replies: 1 comment
-
follow this issue: #4039 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to use paddle speech ttx. I pulled a docker and installed paddlespeech. but when i run this example
from paddlespeech.cli.tts.infer import TTSExecutor tts = TTSExecutor() tts(text="今天天气十分不错。", output="output.wav")
I run into this error:
Traceback (most recent call last):
File "/share/test.py", line 46, in
tts(text="今天天气十分不错。", output="output.wav")
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/cli/utils.py", line 328, in _warpper
return executor_func(self, *args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/cli/tts/infer.py", line 696, in call
self._init_from_path(
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/cli/tts/infer.py", line 333, in _init_from_path
self.frontend = get_frontend(
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/t2s/exps/syn_utils.py", line 293, in get_frontend
frontend = Frontend(
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/t2s/frontend/zh_frontend.py", line 149, in init
self.g2pW_model = G2PWOnnxConverter(
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/t2s/frontend/g2pw/onnx_api.py", line 73, in init
uncompress_path = download_and_decompress(
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/cli/utils.py", line 148, in download_and_decompress
uncompress_path = download.get_path_from_url(archive['url'], path,
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/cli/download.py", line 102, in get_path_from_url
fullpath = _download(url, root_dir, md5sum, method=method)
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/cli/download.py", line 201, in _download
if not _download_methods[method](url, fullname):
File "/usr/local/lib/python3.10/dist-packages/paddlespeech/cli/download.py", line 126, in _get_download
raise RuntimeError("Downloading from {} failed with code "
RuntimeError: Downloading from https://paddlespeech.bj.bcebos.com/Parakeet/released_models/g2p/G2PWModel_1.1.zip failed with code 404!
how can i solve this?
Beta Was this translation helpful? Give feedback.
All reactions