score_sde_ve_gen(pretrained: bool = False, overrides: object = {})The VE model with its objective and the three samplers.
Model Size
Parameters
pretrainedbool= FalseNo weights are published for this family; passing
True raises.**overridesobject= {}Optional
ScoreSDEConfig field overrides.Returns
ScoreSDEForImageGenerationTrainable and samplable.
Notes
Reference: Song et al., ICLR 2021 (arXiv:2011.13456).
The VE prior is wide — — so a sampler that starts from a standard normal will not work here, which is why the prior belongs to the SDE rather than the sampler.
Examples
>>> from lucid.models import score_sde_ve_gen
>>> model = score_sde_ve_gen().eval()
>>> model.sde.__class__.__name__
'VESDE'