-
Notifications
You must be signed in to change notification settings - Fork 43
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
Sharing the checkpoint #3
Comments
I'm newly training the model on ffhq. It will need some time... |
Thanks for your reply. I'll be happy if you share the model when training is finished! |
I have finished the training. You can find checkpoints in https://www.dropbox.com/s/rpoou152x8pt1ag/ckpt-2400k.pt?dl=0. |
@rosinality Thanks a lot! |
@rosinality Thank you for sharing! |
@YoelShoshan You can use the parameters from https://github.com/rosinality/denoising-diffusion-pytorch/blob/master/config/diffusion.conf or like this: from tensorfn import load_config
from diffusion import GaussianDiffusion
conf = load_config(DiffusionConfig, 'config/diffusion.conf')
ckpt = torch.load('ckpt-2400k.pt')
model = conf.model.make()
model.load_state_dict(ckpt['ema'])
model = model.to('cuda')
betas = conf.diffusion.beta_schedule.make()
diffusion = GaussianDiffusion(betas).to('cuda') |
@rosinality Thanks! |
@rosinality could you share the FFHQ pretrained model again? |
@GaParmar Hello, I have re-uploaded the checkpoint. https://www.dropbox.com/s/9z5yr95og67z78p/ddpm-2400k.pt?dl=0 |
Hi, thanks for your great implementation.
Can you share the checkpoint trained on FFHQ dataset?
Thanks.
The text was updated successfully, but these errors were encountered: