From 1ba65b1b551fa4647949df8c5f8a7c9a8a81d302 Mon Sep 17 00:00:00 2001 From: AK Date: Tue, 11 Jul 2023 18:02:37 +0800 Subject: [PATCH] Update LOCAL.md Add Windows version delete training data command --- LOCAL.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/LOCAL.md b/LOCAL.md index a399596..61d5b33 100644 --- a/LOCAL.md +++ b/LOCAL.md @@ -106,6 +106,13 @@ 12. After training is completed, you can use your model by running: `python VC_inference.py --model_dir ./OUTPUT_MODEL/G_latest.pth --share True` 13. To clear all audio data, run: + ### Linux ``` rm -rf ./custom_character_voice/* ./video_data/* ./raw_audio/* ./denoised_audio/* ./segmented_character_voice/* long_character_anno.txt short_character_anno.txt ``` + ### Windos + ``` + del /Q /S .\custom_character_voice\* .\video_data\* .\raw_audio\* .\denoised_audio\* .\segmented_character_voice\* long_character_anno.txt short_character_anno.txt + ``` + +