File size: 245 Bytes
90d8e80
 
 
 
 
 
 
 
 
362da79
90d8e80
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()