Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -297,7 +297,22 @@ with gr.Blocks(theme=gr.themes.Monochrome()) as blocks:
|
|
| 297 |
Try **-1** if you want to explore and generate different designs. If you find something you really love, write down the seed number and use it again to recreate the same design.
|
| 298 |
"""
|
| 299 |
)
|
| 300 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 301 |
run_btn.click(
|
| 302 |
inference,
|
| 303 |
inputs=[
|
|
|
|
| 297 |
Try **-1** if you want to explore and generate different designs. If you find something you really love, write down the seed number and use it again to recreate the same design.
|
| 298 |
"""
|
| 299 |
)
|
| 300 |
+
with gr.Row():
|
| 301 |
+
run_btn = gr.Button("🎨 Create Your QR Art", variant="primary")
|
| 302 |
+
with gr.Column():
|
| 303 |
+
result_image = gr.Image(label="Your Artistic QR Code")
|
| 304 |
+
gr.Markdown(
|
| 305 |
+
"""
|
| 306 |
+
### 🔍 Analyzing Your Creation
|
| 307 |
+
- Is the QR code scannable? Test it with your phone's camera.
|
| 308 |
+
- Does the art style match your prompt? If not, try adjusting the 'Prompt Adherence'.
|
| 309 |
+
- Want more artistic flair? Increase the 'Artistic Freedom'.
|
| 310 |
+
- Need a clearer QR code? Raise the 'QR Code Visibility'.
|
| 311 |
+
|
| 312 |
+
Remember, creating the perfect QR art is a journey of experimentation and refinement.
|
| 313 |
+
Enjoy the process of bringing your unique vision to life!
|
| 314 |
+
"""
|
| 315 |
+
)
|
| 316 |
run_btn.click(
|
| 317 |
inference,
|
| 318 |
inputs=[
|