djrana commited on
Commit
b583671
1 Parent(s): 421de7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -17
app.py CHANGED
@@ -109,21 +109,16 @@ def ac():
109
  btn2.click(clear_all, None,[fac_b,put,out1,out2,out3,out4,t_state,t_switch,message],cancels=[b1,sta,b2,b3,b4,b5,swi],show_progress=False)
110
  b.queue(concurrency_count=100).launch(show_api=False)
111
 
112
- css="""
113
- #col-container{
114
- margin: 0 auto;
115
- max-width: 800px;
116
- }
117
- """
118
-
119
- with gr.Blocks(css=css) as demo:
120
- with gr.Column(elem_id="col-container"):
121
- gr.HTML("""
122
- <h2 style="text-align: center;">
123
- Image to SFX
124
- </h2>
125
- <p style="text-align: center;">
126
- Compare MAGNet, AudioLDM2 and AudioGen sound effects generation from image caption.
127
- </p>
128
- """)
129
  ac()
 
109
  btn2.click(clear_all, None,[fac_b,put,out1,out2,out3,out4,t_state,t_switch,message],cancels=[b1,sta,b2,b3,b4,b5,swi],show_progress=False)
110
  b.queue(concurrency_count=100).launch(show_api=False)
111
 
112
+ with gr.Blocks() as app:
113
+ gr.Markdown(
114
+ '''
115
+ <center><h1>Illusion Diffusion HQ 🌀</h1></span>
116
+ <span font-size:16px;">Generate stunning high quality illusion artwork with Stable Diffusion</span>
117
+ </center>
118
+
119
+ A space by AP [Follow me on Twitter](https://twitter.com/angrypenguinPNG) with big contributions from [multimodalart](https://twitter.com/multimodalart)
120
+ This project works by using [Monster Labs QR Control Net](https://huggingface.co/monster-labs/control_v1p_sd15_qrcode_monster).
121
+ Given a prompt and your pattern, we use a QR code conditioned controlnet to create a stunning illusion! Credit to: [MrUgleh](https://twitter.com/MrUgleh) for discovering the workflow :)
122
+ '''
123
+ )
 
 
 
 
 
124
  ac()