Views
No views yet
tts_models/bn/custom/vits-male on custom Bangla voice dataset.1conda create -n tts-bn python=3.10 -y
2conda activate tts-bn1pip install torch==2.12.0 torchaudio==2.11.0 --index-url https://download.pytorch.org/whl/cu118
2or
3pip install torch==2.7.1+cu118 torchaudio==2.7.1+cu118 --index-url https://download.pytorch.org/whl/cu118pip install -r requirements.txt1CUDA_VISIBLE_DEVICES=0 python -m TTS.bin.train_tts \
2 --config_path configs/bangla.json \
3 --restore_path your_file_location/tts/tts_models--bn--custom--vits-male/model_file.pth1CUDA_VISIBLE_DEVICES=0 python -m TTS.bin.train_tts \
2 --config_path configs/bangla.json \
3 --continue_path outputs/YOUR_RUN_FOLDER/1CLEANERS_PATH=$(python -c "import TTS.tts.utils.text.cleaners as c; import inspect; print(inspect.getfile(c))")
2
3cat bangla_cleaners.py >> $CLEANERS_PATH
4
5# Verify it worked
6python -c "from TTS.tts.utils.text import cleaners; print(hasattr(cleaners, 'bangla_cleaners'))"tensorboard --logdir=outputs/ --port=8080python inference.pypython -m http.server 8080ngrok http --domain=hawkeyes.ngrok.app 8080