alfredplpl's picture
Create app.py
44fd486 verified
raw
history blame
331 Bytes
from imwatermark import WatermarkEncoder
import gradio as gr
def detect_watermark(image):
return "何もわかりませんでした。"
#return "この画像はdiffusersで作られた可能性があります。"
gr.Interface(fn=detect_watermark,
inputs=gr.Image(),
outputs=gr.Textbox()).launch()