Open loboere opened 12 months ago
You can checkout a quick hacky notebook I made here if you'd like to run on colab.
You can checkout a quick hacky notebook I made here if you'd like to run on colab.
Great!You aded some parameters like steps, negative prompt and so on, any possibility to choose the sampler?
You could try doing it like so:
pipe = ... # Initialize the pipeline
from diffusers.schedulers import DPMSolverMultistepScheduler
pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
This notebook is a bit restricted and doesn't support everything the authors provide here (for example, controlnets). I'm working on improving it so that their work can be used with any pipeline.
You could try doing it like so:
pipe = ... # Initialize the pipeline from diffusers.schedulers import DPMSolverMultistepScheduler pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
This notebook is a bit restricted and doesn't support everything the authors provide here (for example, controlnets). I'm working on improving it so that their work can be used with any pipeline.
Confy or A1111 maybe?
Is there a way to make it work in free colab?