I tried Applio for the first time today. With some mp3 files copied to the server at datasets/voices, I ran the following scripts: python rvc/train/preprocess/preprocess.py logs/exp1 datasets/voices 48000 18 "Automatic" False False 0 5 2 "pre" Then python rvc/train/extract/extract.py logs/exp1 "rmvpe" 18 0 48000 contentvec. This gives me the exp1 directory: config.json eval extracted f0 f0_voiced filelist.txt model_info.json sliced_audios sliced_audios_16k however, I found the f0 and f0_voiced directory are empty. and when I run thr training scipt, python rvc/train/train.py exp1 100 1000 pretrained/G_KLM41_48k.pth pretrained/D_KLM41_48k.pth 0 128 48000 False True True True 10 False "HiFi-GAN" True it says Not enough data present in the training set. Perhaps you forgot to slice the audio files in preprocess? Did I forget any preprocessing step prior to training?
#Applio How to make training set?
1 messages · Page 1 of 1 (latest)
you may want to check the output of each step
on Windows I use
env\python rvc\train\preprocess\preprocess.py X:\Applio\logs\Book G:\Training\book 32000 4 Simple False False 0 3.0 0.3 post
env\python rvc\train\extract\extract.py X:\Applio\logs\book rmvpe 4 0 32000 spin-v2 none 2
env\python rvc\train\train.py Book 10 200 X:\G_lcore.pth X:\D_lcore.pth 0 4 32000 True True False False 5 False "HiFi-GAN" False
If you've done everything right, then preprocess step should say 'loaded xx:xx:xx seconds'
and extract step should say x/x segments for f0 and for extract
my extract step sounds different - Starting pitch extraction on cuda:0 using rmvpe... Pitch extraction completed in 3.78 seconds. Starting embedding extraction with 18 cores on cuda:0... 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 448/448 [00:00<00:00, 45233.58it/s] Embedding extraction completed in 3.38 seconds.
I think I found the issue, the multithreading hides the internal errors. Somehow the rmvpe.pt failed to download, so when I rewrite it with a single thread, it says: FileNotFoundError: [Errno 2] No such file or directory: 'rvc/models/predictors/rmvpe.pt' I am trying to upload a copy of rmvpe.pt from local machine and see if that helps.