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
Hi @lucidrains
When model cascade training occurs, do you train the SoundStream first and proceed to train the second model by using soundstream.init_and_load_from ('./path/to/checkpoint.pt')?
incorrect demonstration
from audiolm_pytorch import SoundStream from naturalspeech2_pytorch import NaturalSpeech2 codec = SoundStream() model = NaturalSpeech2(codec = codec, timesteps = 1000) trainer = Trainer(diffusion_model = model) trainer.train()
Hi @lucidrains
When model cascade training occurs, do you train the SoundStream first and proceed to train the second model by using soundstream.init_and_load_from ('./path/to/checkpoint.pt')?
incorrect demonstration
from audiolm_pytorch import SoundStream
from naturalspeech2_pytorch import NaturalSpeech2
codec = SoundStream()
model = NaturalSpeech2(codec = codec, timesteps = 1000)
trainer = Trainer(diffusion_model = model)
trainer.train()
Correct demonstration
from naturalspeech2_pytorch import NaturalSpeech2
codec = SoundStream.init_and_load_from('./path/to/checkpoint.pt')
model = NaturalSpeech2(codec = codec, timesteps = 1000)
trainer = Trainer(diffusion_model = model)
trainer.train()
right?
The text was updated successfully, but these errors were encountered: