From 1a065fa6ed49235b699f5b548957a0be73bae80d Mon Sep 17 00:00:00 2001 From: Yuri Pourre Date: Tue, 26 Jul 2022 04:28:21 -0700 Subject: [PATCH] Update README.md (#1776) Fix typo in different and code sample --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1166c768..b0cde73f 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ pip install -e .[all,dev,notebooks] # Select the relevant extras If you are on Ubuntu (Debian), you can also run following commands for installation. ```bash -$ make system-deps # intended to be used on Ubuntu (Debian). Let us know if you have a diffent OS. +$ make system-deps # intended to be used on Ubuntu (Debian). Let us know if you have a different OS. $ make install ``` @@ -157,10 +157,10 @@ If you are on Windows, 👑@GuyPaddock wrote installation instructions [here](ht ``` $ tts --text "Text for TTS" --model_name "///" --out_path output/path/speech.wav ``` -For example: + For example: ``` - $ tts --text "Text for TTS" --model_name "tts_models/en/ljspeech/glow-tts" --out_path output/path/speech.wav + $ tts --text "Text for TTS" --model_name "tts_models/en/ljspeech/glow-tts" --out_path output/path/speech.wav ``` - Run with specific TTS and vocoder models from the list: @@ -169,10 +169,10 @@ For example: $ tts --text "Text for TTS" --model_name "///" --vocoder_name "///" --out_path output/path/speech.wav ``` -For example: + For example: ``` - $ tts --text "Text for TTS" --model_name "tts_models/en/ljspeech/glow-tts" --vocoder_name "vocoder_models/en/ljspeech/univnet" --out_path output/path/speech.wav + $ tts --text "Text for TTS" --model_name "tts_models/en/ljspeech/glow-tts" --vocoder_name "vocoder_models/en/ljspeech/univnet" --out_path output/path/speech.wav ```