Join the conversation

Join the community of Machine Learners and AI enthusiasts.

Sign Up
mrfakename 
posted an update Mar 19
Post
4118
Today, I'm excited to launch two new models on the TTS Arena: MeloTTS and StyleTTS 2. Both are open sourced, permissively licensed, and highly efficient.

Curious to see how they compare with other leading models? Vote on the TTS Arena ⬇️

TTS-AGI/TTS-Arena

MeloTTS, released by MyShell AI, provides realistic and lifelike text to speech while remaining efficient and fast, even when running on CPU. It supports a variety of languages, including but not limited to English, French, Chinese, and Japanese.

StyleTTS 2 is another fully open sourced text to speech framework. It's permissively licensed, highly-efficient, and supports voice cloning and longform narration. It also provides natural and lifelike speech.

Both are available now to try on the TTS Arena - vote to find which one is better! The leaderboard will be revealed once we collect enough votes.

Hi, we duplicated the space "styletts2/styletts2" into our account, but when we try to run the app, we encounter an error message. >>> import nltk
nltk.download() are present in the run.py file. I would appreciate some help:
File "/home/user/.pyenv/versions/3.10.15/lib/python3.10/site-packages/nltk/tokenize/punkt.py", line 1749, in load_lang
lang_dir = find(f"tokenizers/punkt_tab/{lang}/")
File "/home/user/.pyenv/versions/3.10.15/lib/python3.10/site-packages/nltk/data.py", line 579, in find
raise LookupError(resource_not_found)
LookupError:
**
Resource punkt_tab not found.
Please use the NLTK Downloader to obtain the resource:

import nltk

nltk.download('punkt_tab')

For more information see: https://www.nltk.org/data.html

Attempted to load tokenizers/punkt_tab/english/

Searched in:

'/home/user/nltk_data'
'/home/user/.pyenv/versions/3.10.15/nltk_data'
'/home/user/.pyenv/versions/3.10.15/share/nltk_data'
'/home/user/.pyenv/versions/3.10.15/lib/nltk_data'
'/usr/share/nltk_data'
'/usr/local/share/nltk_data'
'/usr/lib/nltk_data'
'/usr/local/lib/nltk_data'

·

Hi,
Sorry about the issues! Please try adding:

nltk.download('punkt_tab')

below the nltk.download() line – let me know if it works!