alfredplpl commited on
Commit
44fd486
·
verified ·
1 Parent(s): 264c26e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ from imwatermark import WatermarkEncoder
2
+ import gradio as gr
3
+
4
+ def detect_watermark(image):
5
+ return "何もわかりませんでした。"
6
+ #return "この画像はdiffusersで作られた可能性があります。"
7
+ gr.Interface(fn=detect_watermark,
8
+ inputs=gr.Image(),
9
+ outputs=gr.Textbox()).launch()