mirror of
https://github.com/neonbjb/tortoise-tts.git
synced 2026-04-05 06:25:39 +00:00
fix
This commit is contained in:
parent
180d65d0fb
commit
d8f028325b
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ from contextlib import contextmanager
|
|||
pbar = None
|
||||
|
||||
DEFAULT_MODELS_DIR = os.path.join(os.path.expanduser('~'), '.cache', 'tortoise', 'models')
|
||||
MODELS_DIR = MODELS_DIR = os.environ.get('TORTOISE_MODELS_DIR', DEFAULT_MODELS_DIR)
|
||||
MODELS_DIR = os.environ.get('TORTOISE_MODELS_DIR', DEFAULT_MODELS_DIR)
|
||||
MODELS = {
|
||||
'autoregressive.pth': 'https://huggingface.co/jbetker/tortoise-tts-v2/resolve/main/.models/autoregressive.pth',
|
||||
'classifier.pth': 'https://huggingface.co/jbetker/tortoise-tts-v2/resolve/main/.models/classifier.pth',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue