Commit
·
e580214
1
Parent(s):
1bdc372
Update app.py
Browse files
app.py
CHANGED
@@ -167,10 +167,13 @@ def inference(
|
|
167 |
with gr.Blocks() as blocks:
|
168 |
gr.Markdown(
|
169 |
"""
|
170 |
-
|
171 |
|
172 |
===================================**DISCLAIMER - By using this model you agree to waive any liability and are assuming all responsibility for generated images.**=====================================
|
173 |
====================================================================**This model is not intended for commerical use.**=====================================================================
|
|
|
|
|
|
|
174 |
This generator is trained using SD 1.5. To use SD 2.1 for better quality and other features like upscaling, personal images, dynamic QR codes, custom models and style options, and more:
|
175 |
visit
|
176 |
https://www.aiqrgenerator.com/pro-model
|
@@ -178,8 +181,9 @@ https://www.aiqrgenerator.com/pro-model
|
|
178 |
When sharing generated QR codes generated with this specific model, please credit aiqrgenerator.com. Feel free to embbed the model or share a link to the website page.
|
179 |
|
180 |
Type in what you want the QR code to look like. Use major subjects seperated by commas like the example below - you can even include styles!
|
|
|
181 |
Type your QR code information such as a website link or if you have a QR image, upload it.
|
182 |
-
Feel free to test custom settings as well to make the QR work or try changing your prompt.
|
183 |
**Hit run!**
|
184 |
|
185 |
|
@@ -251,7 +255,7 @@ Feel free to test custom settings as well to make the QR work or try changing yo
|
|
251 |
)
|
252 |
sampler = gr.Textbox(visible=False, value="DDIM") #gr.Dropdown(choices=list(SAMPLER_MAP.keys()), value="DPM++ Karras SDE")
|
253 |
seed = gr.Slider(
|
254 |
-
minimum
|
255 |
maximum=9999999999,
|
256 |
step=1,
|
257 |
value=2313123,
|
|
|
167 |
with gr.Blocks() as blocks:
|
168 |
gr.Markdown(
|
169 |
"""
|
170 |
+
# CREATED FOR HTTPS://WWW.AIQRGENERATOR.COM/ EARLY BETA PUBLIC ACCESS V1.02 - Custom version of the original for better quality and ease of use.
|
171 |
|
172 |
===================================**DISCLAIMER - By using this model you agree to waive any liability and are assuming all responsibility for generated images.**=====================================
|
173 |
====================================================================**This model is not intended for commerical use.**=====================================================================
|
174 |
+
|
175 |
+
|
176 |
+
|
177 |
This generator is trained using SD 1.5. To use SD 2.1 for better quality and other features like upscaling, personal images, dynamic QR codes, custom models and style options, and more:
|
178 |
visit
|
179 |
https://www.aiqrgenerator.com/pro-model
|
|
|
181 |
When sharing generated QR codes generated with this specific model, please credit aiqrgenerator.com. Feel free to embbed the model or share a link to the website page.
|
182 |
|
183 |
Type in what you want the QR code to look like. Use major subjects seperated by commas like the example below - you can even include styles!
|
184 |
+
Change the seed in the last setting to completely change the generation.
|
185 |
Type your QR code information such as a website link or if you have a QR image, upload it.
|
186 |
+
Feel free to test custom settings as well to make the QR work or try changing your prompt.
|
187 |
**Hit run!**
|
188 |
|
189 |
|
|
|
255 |
)
|
256 |
sampler = gr.Textbox(visible=False, value="DDIM") #gr.Dropdown(choices=list(SAMPLER_MAP.keys()), value="DPM++ Karras SDE")
|
257 |
seed = gr.Slider(
|
258 |
+
minimum=1,
|
259 |
maximum=9999999999,
|
260 |
step=1,
|
261 |
value=2313123,
|