Make style

This commit is contained in:
Eren G??lge 2023-09-14 15:23:37 +02:00
parent 44b61d2b92
commit ded7fd4fb2
2 changed files with 8 additions and 5 deletions

View File

@ -21,7 +21,7 @@ LICENSE_URLS = {
"apache 2.0": "https://choosealicense.com/licenses/apache-2.0/", "apache 2.0": "https://choosealicense.com/licenses/apache-2.0/",
"apache2": "https://choosealicense.com/licenses/apache-2.0/", "apache2": "https://choosealicense.com/licenses/apache-2.0/",
"cc-by-sa 4.0": "https://creativecommons.org/licenses/by-sa/4.0/", "cc-by-sa 4.0": "https://creativecommons.org/licenses/by-sa/4.0/",
"cpml": "https://coqui.ai/cpml.txt" "cpml": "https://coqui.ai/cpml.txt",
} }

View File

@ -9,7 +9,6 @@ from TTS.tts.utils.speakers import SpeakerManager
from TTS.utils.generic_utils import get_user_data_dir from TTS.utils.generic_utils import get_user_data_dir
from TTS.utils.manage import ModelManager from TTS.utils.manage import ModelManager
MODELS_WITH_SEP_TESTS = ["bark", "xtts"] MODELS_WITH_SEP_TESTS = ["bark", "xtts"]
@ -70,7 +69,8 @@ def run_models(offset=0, step=1):
def test_xtts(): def test_xtts():
output_path = os.path.join(get_tests_output_path(), "output.wav") output_path = os.path.join(get_tests_output_path(), "output.wav")
speaker_wav = os.path.join(get_tests_data_path(), "ljspeech", "wavs", "LJ001-0001.wav") speaker_wav = os.path.join(get_tests_data_path(), "ljspeech", "wavs", "LJ001-0001.wav")
run_cli("yes | " run_cli(
"yes | "
f"tts --model_name tts_models/multilingual/multi-dataset/xtts_v1 " f"tts --model_name tts_models/multilingual/multi-dataset/xtts_v1 "
f'--text "This is an example." --out_path "{output_path}" --progress_bar False --use_cuda True ' f'--text "This is an example." --out_path "{output_path}" --progress_bar False --use_cuda True '
f'--speaker_wav "{speaker_wav}" --language_idx "en"' f'--speaker_wav "{speaker_wav}" --language_idx "en"'
@ -98,9 +98,12 @@ def test_voice_conversion():
f" --out_path {output_path} --speaker_wav {speaker_wav} --reference_wav {reference_wav} --language_idx {language_id} --progress_bar False" f" --out_path {output_path} --speaker_wav {speaker_wav} --reference_wav {reference_wav} --language_idx {language_id} --progress_bar False"
) )
""" """
These are used to split tests into different actions on Github. These are used to split tests into different actions on Github.
""" """
def test_models_offset_0_step_3(): def test_models_offset_0_step_3():
run_models(offset=0, step=3) run_models(offset=0, step=3)