LuChengTHU / dpm-solver

Official code for "DPM-Solver: A Fast ODE Solver for Diffusion Probabilistic Model Sampling in Around 10 Steps" (Neurips 2022 Oral)
MIT License
1.52k stars 120 forks source link

Multiple Guidance in Sampling? #54

Closed LRMbbj closed 4 months ago

LRMbbj commented 5 months ago

Thanks for your excellent work!

I am wondering if DPM Solver supports applying multiple guidance techniques simultaneously, such as both Classifier-free guidance and Classifier guidance, or using multiple guidance techniques with varying guided scales.And are there any plans for implementing these features?

LuChengTHU commented 5 months ago

Hi @LRMbbj , thanks for this suggestion! Actually integrate these features is quite easy, but I don't want to increase more features to make the code base more messy, and I want to maintain a clean, tiny codebase. You can implement them with your own forks as you wish :)

LRMbbj commented 4 months ago

thanks for your reply!