Replies: 2 comments 7 replies
-
I have a fine tuning guide you can look at that directs you through the creation of those. There is a link to it on the repo's readme. The validation list or val_list is a portion of your dataset that the model will use after each epoch to evaluate it's current performance. It compares the predictions on the validation dataset with the actual values. This can help you gauge how training is going and if anything needs to be adjusted. OOD_list works in almost the same way except it's data the model has not seen or data that was not like training data. This is important because it tests the models ability to generalize it's learning on new unseen data. |
Beta Was this translation helpful? Give feedback.
-
Question about OOD_list: Looking at the OOD_texts in the data directory, it has 141,000 entries and is actually a copy of train_list_libritts.txt. Could it be that the libritts texts were used for training of LJSpeech? The audio files listed there are not present - does it mean that OOD_list contains only text, and the audio files it contains are being ignored? Do I really need 141,000 entries for fine tuning? I also noticed some entries are far longer than 10 seconds. It seems to me, since the OOD texts were taken from the libritts training, its not really out-of-distribution, does it make sense to use it for fine tuning libritts model? Would you have some more details on construction the OOD list for fine tuning. Thank you. |
Beta Was this translation helpful? Give feedback.
-
What is val_list and OOD_list used for and how should I create them? I want to add a single English speaker with specific accent to LibiriTS. Can I use the exisiting LibriTS val_list and OOD_list or should I create ones that use the new speaker only? I don't have much material for the new speaker, so modeling from scratch is not an option.
Beta Was this translation helpful? Give feedback.
All reactions