App_Detection / app.py
Eric2983's picture
Update app.py
362da79 verified
raw
history blame
245 Bytes
import gradio as gr
from PIL import Image
import numpy as np
import os
# Create the Gradio app
app = gr.Interface(
inputs=gr.Image(type="pil"),
title="App Detection",
description=description_markdown,
)
# Run the app
app.launch()