Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -348,7 +348,7 @@ def update_step(state, idx):
|
|
| 348 |
|
| 349 |
# ------------------- GRADIO UI -------------------
|
| 350 |
|
| 351 |
-
with gr.Blocks(title="Stable Diffusion v1-4 β CPU Diffusion Visualizer") as demo:
|
| 352 |
|
| 353 |
gr.Markdown("# π§ Stable Diffusion v1-4 β CPU Visualizer (256Γ256)")
|
| 354 |
gr.Markdown(
|
|
@@ -396,4 +396,4 @@ with gr.Blocks(title="Stable Diffusion v1-4 β CPU Diffusion Visualizer") as de
|
|
| 396 |
outputs=[step_img, pca_plot, norm_plot]
|
| 397 |
)
|
| 398 |
|
| 399 |
-
demo.launch()
|
|
|
|
| 348 |
|
| 349 |
# ------------------- GRADIO UI -------------------
|
| 350 |
|
| 351 |
+
with gr.Blocks(title="Stable Diffusion v1-4 β CPU Diffusion Visualizer",theme=gr.themes.Soft()) as demo:
|
| 352 |
|
| 353 |
gr.Markdown("# π§ Stable Diffusion v1-4 β CPU Visualizer (256Γ256)")
|
| 354 |
gr.Markdown(
|
|
|
|
| 396 |
outputs=[step_img, pca_plot, norm_plot]
|
| 397 |
)
|
| 398 |
|
| 399 |
+
demo.launch(debug=True, server_name="0.0.0.0", server_port=7860, pwa=True)
|