forked from mrq/tortoise-tts
Set transformer and model folder to local './models/' instead of for the user profile, because I'm sick of more bloat polluting my C:\
This commit is contained in:
parent
d29ba75dd6
commit
84a9758ab9
|
@ -4,6 +4,12 @@ import uuid
|
||||||
from time import time
|
from time import time
|
||||||
from urllib import request
|
from urllib import request
|
||||||
|
|
||||||
|
if 'TORTOISE_MODELS_DIR' not in os.environ:
|
||||||
|
os.environ['TORTOISE_MODELS_DIR'] = os.path.join(os.path.dirname(os.path.realpath(__file__)), '../models/tortoise/')
|
||||||
|
|
||||||
|
if 'TRANSFORMERS_CACHE' not in os.environ:
|
||||||
|
os.environ['TRANSFORMERS_CACHE'] = os.path.join(os.path.dirname(os.path.realpath(__file__)), '../models/transformers/')
|
||||||
|
|
||||||
import torch
|
import torch
|
||||||
import torch.nn.functional as F
|
import torch.nn.functional as F
|
||||||
import progressbar
|
import progressbar
|
||||||
|
@ -26,8 +32,7 @@ from tortoise.utils.wav2vec_alignment import Wav2VecAlignment
|
||||||
|
|
||||||
pbar = None
|
pbar = None
|
||||||
|
|
||||||
DEFAULT_MODELS_DIR = os.path.join(os.path.expanduser('~'), '.cache', 'tortoise', 'models')
|
MODELS_DIR = os.environ.get('TORTOISE_MODELS_DIR')
|
||||||
MODELS_DIR = os.environ.get('TORTOISE_MODELS_DIR', DEFAULT_MODELS_DIR)
|
|
||||||
MODELS = {
|
MODELS = {
|
||||||
'autoregressive.pth': 'https://huggingface.co/jbetker/tortoise-tts-v2/resolve/main/.models/autoregressive.pth',
|
'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',
|
'classifier.pth': 'https://huggingface.co/jbetker/tortoise-tts-v2/resolve/main/.models/classifier.pth',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user