PraneshJs commited on
Commit
fd7186e
Β·
verified Β·
1 Parent(s): 3cb2178

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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)