Georgehappy1
Georgehappy1
@bshall Thank you for your reply! I will follow your instructions to train the model in vctk. I will show the results here once results come out.
> @Georgehappy1, just checking if you ever managed to get the training on VCTK working? yes, i have got the results. Thank u for ur help. Later i will upload...
@bshall hi, the demo link is here https://drive.google.com/drive/folders/1c1VQFzC2zf25OXZPkNTiwlaHHZOREBGe?usp=sharing I used the first 30 speakers' speeches in VCTK to train the model except for the first 30 speeches of p225, p226,...
Why do we need `batch_size=batch_size * group_size`? What is the point of the `group_size` variable?
@chenming6615 Because in the collate_fn function, we need to sort all the utterances in a batch, which will cost time. If we set group_size > 1, we can sort all...