mirror of https://github.com/coqui-ai/TTS.git
change python3 to python in the extract tts espectrograms script to avoid incompatibility
parent
65860a954a
commit
070227d2ab
|
@ -30,7 +30,7 @@ class TestExtractTTSSpectrograms(unittest.TestCase):
|
|||
# save model
|
||||
torch.save({"model": model.state_dict()}, checkpoint_path)
|
||||
# run test
|
||||
run_cli(f'CUDA_VISIBLE_DEVICES="" python3 TTS/bin/extract_tts_spectrograms.py --config_path "{config_path}" --checkpoint_path "{checkpoint_path}" --output_path "{output_path}"')
|
||||
run_cli(f'CUDA_VISIBLE_DEVICES="" python TTS/bin/extract_tts_spectrograms.py --config_path "{config_path}" --checkpoint_path "{checkpoint_path}" --output_path "{output_path}"')
|
||||
run_cli(f'rm -rf "{output_path}" "{checkpoint_path}"')
|
||||
@staticmethod
|
||||
def test_Tacotron2():
|
||||
|
@ -46,7 +46,7 @@ class TestExtractTTSSpectrograms(unittest.TestCase):
|
|||
# save model
|
||||
torch.save({"model": model.state_dict()}, checkpoint_path)
|
||||
# run test
|
||||
run_cli(f'CUDA_VISIBLE_DEVICES="" python3 TTS/bin/extract_tts_spectrograms.py --config_path "{config_path}" --checkpoint_path "{checkpoint_path}" --output_path "{output_path}"')
|
||||
run_cli(f'CUDA_VISIBLE_DEVICES="" python TTS/bin/extract_tts_spectrograms.py --config_path "{config_path}" --checkpoint_path "{checkpoint_path}" --output_path "{output_path}"')
|
||||
run_cli(f'rm -rf "{output_path}" "{checkpoint_path}"')
|
||||
@staticmethod
|
||||
def test_Tacotron():
|
||||
|
@ -62,5 +62,5 @@ class TestExtractTTSSpectrograms(unittest.TestCase):
|
|||
# save model
|
||||
torch.save({"model": model.state_dict()}, checkpoint_path)
|
||||
# run test
|
||||
run_cli(f'CUDA_VISIBLE_DEVICES="" python3 TTS/bin/extract_tts_spectrograms.py --config_path "{config_path}" --checkpoint_path "{checkpoint_path}" --output_path "{output_path}"')
|
||||
run_cli(f'CUDA_VISIBLE_DEVICES="" python TTS/bin/extract_tts_spectrograms.py --config_path "{config_path}" --checkpoint_path "{checkpoint_path}" --output_path "{output_path}"')
|
||||
run_cli(f'rm -rf "{output_path}" "{checkpoint_path}"')
|
||||
|
|
Loading…
Reference in New Issue