Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -350,7 +350,7 @@ def process(input_img):
|
|
| 350 |
# LANCEMENT
|
| 351 |
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 352 |
|
| 353 |
-
with gr.Blocks(
|
| 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())
|