Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Eric2983
/
App_Detection
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a55bf0e
App_Detection
/
app.py
Eric2983
Update app.py
a55bf0e
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
206 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"
)
# Run the app
app.launch()