Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Model cascade training #272

Open
a897456 opened this issue Mar 19, 2024 · 0 comments
Open

Model cascade training #272

a897456 opened this issue Mar 19, 2024 · 0 comments

Comments

@a897456
Copy link

a897456 commented Mar 19, 2024

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant