from constants import css import gradio as gr block = gr.Blocks(css=css) with block: gr.HTML( """

Evaluate Schedulers with StableDiffusionPipeline 🧨

This Space allows you to quantitatively compare different noise schedulers with a `StableDiffusionPipeline`.
One of the applications of this Space could be to evaluate different schedulers for a certain Stable Diffusion checkpoint
for a fixed number of inference steps.

""" ) with gr.Group(): with gr.Box(): with gr.Row(elem_id="prompt-container").style(mobile_collapse=False, equal_height=True): with gr.Column(): gr.Text(max_lines=1, placeholder="a painting of a dog") gr.HTML( """

How it works?

Notes

""" ) block.launch()