'''
scheduler ([SchedulerMixin]):
A scheduler to be used in combination with unet to denoise the encoded image latents. Can be one of
[DDIMScheduler], [LMSDiscreteScheduler], or [PNDMScheduler].
'''
However, I observed that the initialization code defaults to using KarrasDiffusionSchedulers. Is it ok to use the DDIMScheduler as outlined in the documentation? Or there exists mismatch between the document and the code? Thanks.
As documented in MVDiffusionImagePipeline
''' scheduler ([
SchedulerMixin
]): A scheduler to be used in combination withunet
to denoise the encoded image latents. Can be one of [DDIMScheduler
], [LMSDiscreteScheduler
], or [PNDMScheduler
]. '''However, I observed that the initialization code defaults to using KarrasDiffusionSchedulers. Is it ok to use the DDIMScheduler as outlined in the documentation? Or there exists mismatch between the document and the code? Thanks.