From 6bb8cedfda6b5edae31cf715643ec883c8a668bc Mon Sep 17 00:00:00 2001 From: liuhaozhe6788 <2792382045@qq.com> Date: Thu, 17 Nov 2022 19:33:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=99README.md=E5=A2=9E=E5=8A=A0=E8=AE=AD?= =?UTF-8?q?=E7=BB=83=E6=8C=87=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a7c2f7..dbc2111 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,37 @@ -# voice-cloning +# Voice-Cloning +## Training Commands +**Encoder Preprocessing:** +``` +python encoder_preprocess.py +``` + +**Encoder Training:** +``` +python encoder_train.py my_run /SV2TTS/encoder +``` + +**Synthesizer Preprocessing:** +``` +python synthesizer_preprocess_audio.py +python synthesizer_preprocess_embeds.py /SV2TTS/synthesizer +``` + +**Synthesizer Training:** +``` +python synthesizer_train.py my_run /SV2TTS/synthesizer +``` + +**Vocoder Preprocessing:** +``` +python vocoder_preprocess.py +``` + +**Vocoder Training:** +``` +python vocoder_train.py my_run +``` + + ## Version updates **2022.05.19:** We calculated GE2E loss in encoder with cuda rather than originally-configured CPU. It speeds up the encoder training speed.
**2022.07.15:** We added Loss animation plot for synthesizer and vocoder.