Open Feanor007 opened 2 years ago
From what it looks like, you're not training the second Unet. You have to make separate calls to trainer.train_step(unet_number = 2 max_batch_size = 4)
to train the up-scaling unet
From what it looks like, you're not training the second Unet. You have to make separate calls to
trainer.train_step(unet_number = 2 max_batch_size = 4)
to train the up-scaling unet
Thank you for your reply. But at this stage, I only intend to train the first U-Net to get a 64 64 32 video. I did turn off the second U-Net during inference by setting stop_at_unet_number = 1
Has anyone successfully trained the model on video synthesis (video to video, no conditioning)? I have trained my model for 10K step and still got pretty bad results.
I am currently only trying to generate a 64 64 32 sized video, no upscale involved. The data is auto-normalized and I got loss values around 0.1 Is this normal?
Here is the code for training:
Here is the code for inference:
Many thanks in advance!