baofff / U-ViT

A PyTorch implementation of the paper "All are Worth Words: A ViT Backbone for Diffusion Models".
MIT License
885 stars 58 forks source link

What does 'discrete' mean in 'train_t2i_discrete.py'? #11

Open JincanDeng opened 1 year ago

NieShenRuc commented 1 year ago

discrete represents the use of the discrete time schedule in the diffusion model, similar to ddpm or stable diffusion, rather than the continuous time shcedule in the score based model

294coder commented 1 year ago

Hi!

What are the pro and cons of continuous schedule and discrete schedule?