From d0c8645183223cf2b8431062f1ac39c1316df581 Mon Sep 17 00:00:00 2001 From: shahbazraza Date: Sat, 11 Nov 2023 22:45:21 +0500 Subject: [PATCH] feature/remove docs in inference --- docs/source/inference.md | 8 -------- tests/inference_tests/test_synthesize.py | 1 - 2 files changed, 9 deletions(-) diff --git a/docs/source/inference.md b/docs/source/inference.md index 55f1e1f8..bbbea234 100644 --- a/docs/source/inference.md +++ b/docs/source/inference.md @@ -32,14 +32,6 @@ tts --textfile "text/file/path" \ --out_path folder/to/save/output.wav ``` -Run a TTS model, from the release models list, with its default vocoder. (Simply copy and paste the full model names from the list as arguments for the command below.) - -```bash -tts --textfile "Text for TTS" \ - --model_name "///" \ - --out_path folder/to/save/output.wav -``` - Run a tts and a vocoder model from the released model list. Note that not every vocoder is compatible with every TTS model. ```bash diff --git a/tests/inference_tests/test_synthesize.py b/tests/inference_tests/test_synthesize.py index 562a4607..28a4088c 100644 --- a/tests/inference_tests/test_synthesize.py +++ b/tests/inference_tests/test_synthesize.py @@ -10,7 +10,6 @@ def test_synthesize(): # single speaker model run_cli(f'tts --text "This is an example." --out_path "{output_path}"') - run_cli(f'tts --textfile "text/file/path" --out_path "{output_path}"') run_cli( "tts --model_name tts_models/en/ljspeech/glow-tts " f'--text "This is an example." --out_path "{output_path}"' )