forked from mrq/tortoise-tts
one more update
This commit is contained in:
parent
56a5415776
commit
9392a11cdd
7
main.py
7
main.py
|
@ -1,13 +1,10 @@
|
||||||
import webui as mrq
|
import webui as mrq
|
||||||
|
|
||||||
if 'XDG_CACHE_HOME' not in os.environ:
|
|
||||||
os.environ['XDG_CACHE_HOME'] = os.path.realpath('./models/')
|
|
||||||
|
|
||||||
if 'TORTOISE_MODELS_DIR' not in os.environ:
|
if 'TORTOISE_MODELS_DIR' not in os.environ:
|
||||||
os.environ['TORTOISE_MODELS_DIR'] = os.path.realpath('./models/tortoise/')
|
os.environ['TORTOISE_MODELS_DIR'] = os.path.realpath(os.path.join(os.getcwd(), './models/tortoise/'))
|
||||||
|
|
||||||
if 'TRANSFORMERS_CACHE' not in os.environ:
|
if 'TRANSFORMERS_CACHE' not in os.environ:
|
||||||
os.environ['TRANSFORMERS_CACHE'] = os.path.realpath('./models/transformers/')
|
os.environ['TRANSFORMERS_CACHE'] = os.path.realpath(os.path.join(os.getcwd(), './models/transformers/'))
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
mrq.args = mrq.setup_args()
|
mrq.args = mrq.setup_args()
|
||||||
|
|
|
@ -29,10 +29,8 @@ from tortoise.utils.wav2vec_alignment import Wav2VecAlignment
|
||||||
from tortoise.utils.device import get_device, get_device_name, get_device_batch_size
|
from tortoise.utils.device import get_device, get_device_name, get_device_batch_size
|
||||||
|
|
||||||
pbar = None
|
pbar = None
|
||||||
|
|
||||||
STOP_SIGNAL = False
|
STOP_SIGNAL = False
|
||||||
|
MODELS_DIR = os.environ.get('TORTOISE_MODELS_DIR', os.path.realpath(os.path.join(os.getcwd(), './models/tortoise/')))
|
||||||
MODELS_DIR = os.environ.get('TORTOISE_MODELS_DIR', os.path.realpath('./models/tortoise/'))
|
|
||||||
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