You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For coarse generation model, how many training steps does it usually require to generate intelligible speech? In my case, I use LibriTTS for training, and batch size is set as 96. Given the oracle semantic token, at training step of 20,000, still the model cannot generate intelligible speech.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
For coarse generation model, how many training steps does it usually require to generate intelligible speech? In my case, I use LibriTTS for training, and batch size is set as 96. Given the oracle semantic token, at training step of 20,000, still the model cannot generate intelligible speech.
Some training config:
coarse_transformer = CoarseTransformer(
num_semantic_tokens = wav2vec.codebook_size,
codebook_size = 1024,
num_coarse_quantizers = 3,
dim = 512,
depth = 6
).cuda()
trainer = CoarseTransformerTrainer(
transformer = coarse_transformer,
codec = EncodecWrapper(),
wav2vec = wav2vec,
folder = dataset_folder,
batch_size = 96,
data_max_length = 160000,
num_train_steps = 20000
)
Could anyone share some insights about this if you are also working on this?
Thanks a lot!
Beta Was this translation helpful? Give feedback.
All reactions