artificialguybr commited on
Commit
73c49e0
·
verified ·
1 Parent(s): dc9144c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -35
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
- <div style="text-align: center; font-size: 1.5em; margin-bottom: 20px;">
76
- **Generate Stunning Images with Stable Diffusion XL**
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
- **How to Use:**
86
- </p>
87
-
88
- <ol>
89
- <li>Enter a detailed **prompt** describing the image you want to generate.</li>
90
- <li>Optionally, add a **negative prompt** to specify elements you want to avoid.</li>
91
- <li>Choose a **sampler** (algorithm) for image generation.</li>
92
- <li>Set a **seed** for reproducibility (or leave it blank for random results).</li>
93
- <li>Adjust the **guidance scale** to influence how closely the image follows the prompt.</li>
94
- <li>Set the **inference steps** to control the level of detail and processing time.</li>
95
- <li>Click **Generate** and marvel at your creation!
96
- </ol>
97
-
98
- <p>
99
- **This service is powered by NVIDIA NGC and is completely free to use.**
100
- </p>
101
-
102
- <p>
103
- **Created by:** @artificialguybr (<a href="https://twitter.com/artificialguybr">Twitter</a>)
104
- </p>
105
-
106
- <p>
107
- **Explore more:** <a href="https://artificialguy.com">artificialguy.com</a>
108
- </p>
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