artificialguybr commited on
Commit
60c58a2
·
verified ·
1 Parent(s): 5ac7f5d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -71,11 +71,7 @@ iface = gr.Interface(
71
  gr.Slider(label="Inference Steps", minimum=5, maximum=100, value=35)
72
  ],
73
  outputs=gr.Image(label="Generated Image"),
74
- )
75
-
76
- # Launch the Gradio app
77
- iface.launch(
78
- description="""
79
  <div style="text-align: center; font-size: 1.5em; margin-bottom: 20px;">
80
  **Generate Stunning Images with Stable Diffusion XL**
81
  </div>
@@ -110,5 +106,8 @@ iface.launch(
110
  <p>
111
  **Explore more:** <a href="https://artificialguy.com">artificialguy.com</a>
112
  </p>
113
- """,
114
  )
 
 
 
 
71
  gr.Slider(label="Inference Steps", minimum=5, maximum=100, value=35)
72
  ],
73
  outputs=gr.Image(label="Generated Image"),
74
+ description="""
 
 
 
 
75
  <div style="text-align: center; font-size: 1.5em; margin-bottom: 20px;">
76
  **Generate Stunning Images with Stable Diffusion XL**
77
  </div>
 
106
  <p>
107
  **Explore more:** <a href="https://artificialguy.com">artificialguy.com</a>
108
  </p>
109
+ """
110
  )
111
+
112
+ # Launch the Gradio app
113
+ iface.launch()