xxlong0 / Wonder3D

Single Image to 3D using Cross-Domain Diffusion for 3D Generation
https://www.xxlong.site/Wonder3D/
GNU Affero General Public License v3.0
4.83k stars 389 forks source link

Potential Mismatch Between Documentation and Default Scheduler in MVDiffusionImagePipeline #118

Open QuLiao1117 opened 10 months ago

QuLiao1117 commented 10 months ago

As documented in MVDiffusionImagePipeline

''' 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.

xxlong0 commented 10 months ago

The scheduler will be explicitly set in the code, we don't use the default scheduler.