fountai commited on
Commit
a29e50c
·
1 Parent(s): 7eb60db
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -208,11 +208,12 @@ with gr.Blocks(css=custom_css) as demo:
208
  guidance = gr.Slider(minimum=1, maximum=10, value=4, label="Guidance")
209
  cfg = gr.Slider(minimum=1, maximum=10, value=1, label="CFG")
210
  negative_image = gr.Image(label="Negative_image", type="filepath")
 
 
211
 
212
  with gr.Column(scale=2, elem_classes="app"):
213
  output = gr.Gallery(label="Galery output", elem_classes="galery", selected_index=0)
214
 
215
  submit_btn.click(process_image, inputs=[input_image, prompt, steps, use_lora, controlnet, use_depth, use_hed, use_ip, lora_name, lora_path, lora_weight, negative_image, neg_prompt, true_gs, guidance, cfg], outputs=output)
216
 
217
- print("starting")
218
  demo.launch(share=True, debug=True)
 
208
  guidance = gr.Slider(minimum=1, maximum=10, value=4, label="Guidance")
209
  cfg = gr.Slider(minimum=1, maximum=10, value=1, label="CFG")
210
  negative_image = gr.Image(label="Negative_image", type="filepath")
211
+ gr.HTML("""<h1 style="font-size: 1.5rem; font-weight: bold; color: white; text-align: center;">Space By: <a href="https://x.com/EuFountai">EuFountai</a></h1>""")
212
+
213
 
214
  with gr.Column(scale=2, elem_classes="app"):
215
  output = gr.Gallery(label="Galery output", elem_classes="galery", selected_index=0)
216
 
217
  submit_btn.click(process_image, inputs=[input_image, prompt, steps, use_lora, controlnet, use_depth, use_hed, use_ip, lora_name, lora_path, lora_weight, negative_image, neg_prompt, true_gs, guidance, cfg], outputs=output)
218
 
 
219
  demo.launch(share=True, debug=True)