Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -163,7 +163,7 @@ custom_css = """
|
|
| 163 |
}
|
| 164 |
"""
|
| 165 |
|
| 166 |
-
with gr.Blocks(
|
| 167 |
gr.Markdown("# CIFAR-10 Diffusion Model")
|
| 168 |
gr.Markdown("Select a class and click 'Generate' to create image samples.")
|
| 169 |
|
|
@@ -190,4 +190,4 @@ with gr.Blocks(css=custom_css) as demo:
|
|
| 190 |
|
| 191 |
|
| 192 |
# Run the Gradio app
|
| 193 |
-
demo.launch()
|
|
|
|
| 163 |
}
|
| 164 |
"""
|
| 165 |
|
| 166 |
+
with gr.Blocks() as demo:
|
| 167 |
gr.Markdown("# CIFAR-10 Diffusion Model")
|
| 168 |
gr.Markdown("Select a class and click 'Generate' to create image samples.")
|
| 169 |
|
|
|
|
| 190 |
|
| 191 |
|
| 192 |
# Run the Gradio app
|
| 193 |
+
demo.launch(css=custom_css)
|