Update app.py
Browse files
app.py
CHANGED
@@ -71,41 +71,41 @@ iface = gr.Interface(
|
|
71 |
gr.Slider(label="Inference Steps", minimum=5, maximum=100, value=35)
|
72 |
],
|
73 |
outputs=gr.Image(label="Generated Image"),
|
74 |
-
description="""
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
"""
|
110 |
)
|
111 |
|
|
|
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 |
+
<strong>Generate Stunning Images with Stable Diffusion XL</strong>
|
77 |
+
</div>
|
78 |
+
|
79 |
+
<p>
|
80 |
+
This Gradio app harnesses the power of Stable Diffusion XL image generation capabilities to bring your creative visions to life. Using NVIDIA NGC.
|
81 |
+
Simply provide a text prompt describing the image you desire, and let the AI do its magic!
|
82 |
+
</p>
|
83 |
+
|
84 |
+
<p>
|
85 |
+
<strong>How to Use:</strong>
|
86 |
+
</p>
|
87 |
+
|
88 |
+
<ol>
|
89 |
+
<li>Enter a detailed <strong>prompt</strong> describing the image you want to generate.</li>
|
90 |
+
<li>Optionally, add a <strong>negative prompt</strong> to specify elements you want to avoid.</li>
|
91 |
+
<li>Choose a <strong>sampler</strong> (algorithm) for image generation.</li>
|
92 |
+
<li>Set a <strong>seed</strong> for reproducibility (or leave it blank for random results).</li>
|
93 |
+
<li>Adjust the <strong>guidance scale</strong> to influence how closely the image follows the prompt.</li>
|
94 |
+
<li>Set the <strong>inference steps</strong> to control the level of detail and processing time.</li>
|
95 |
+
<li>Click <strong>Generate</strong> and marvel at your creation!
|
96 |
+
</ol>
|
97 |
+
|
98 |
+
<p>
|
99 |
+
<strong>This service is powered by NVIDIA NGC and is completely free to use.</strong>
|
100 |
+
</p>
|
101 |
+
|
102 |
+
<p>
|
103 |
+
<strong>Created by:</strong> @artificialguybr (<a href="https://twitter.com/artificialguybr">Twitter</a>)
|
104 |
+
</p>
|
105 |
+
|
106 |
+
<p>
|
107 |
+
<strong>Explore more:</strong> <a href="https://artificialguy.com">artificialguy.com</a>
|
108 |
+
</p>
|
109 |
"""
|
110 |
)
|
111 |
|