NOBODY204 commited on
Commit
de3ae17
Β·
verified Β·
1 Parent(s): b947f8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -350,7 +350,7 @@ def process(input_img):
350
  # LANCEMENT
351
  # ─────────────────────────────────────────────────────────────
352
 
353
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
354
  gr.Markdown(
355
  "# πŸ›‘οΈ ImageShield PRO v2.5\n"
356
  "### Analyse Forensic : Authentique vs Deepfake / Retouche\n"
@@ -366,4 +366,4 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
366
 
367
  run_btn.click(process, inputs=in_img, outputs=[out_plot, out_text])
368
 
369
- demo.launch()
 
350
  # LANCEMENT
351
  # ─────────────────────────────────────────────────────────────
352
 
353
+ with gr.Blocks() as demo:
354
  gr.Markdown(
355
  "# πŸ›‘οΈ ImageShield PRO v2.5\n"
356
  "### Analyse Forensic : Authentique vs Deepfake / Retouche\n"
 
366
 
367
  run_btn.click(process, inputs=in_img, outputs=[out_plot, out_text])
368
 
369
+ demo.launch(share=True, theme=gr.themes.Soft())