Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BirdM
/
Deepfake_detector
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
80f49b1
Deepfake_detector
/
app.py
BirdM
Update app.py
80f49b1
verified
18 days ago
raw
Copy download link
history
blame
Safe
184 Bytes
import
gradio
as
gr
def
test
():
return
"La app está funcionando 🎉"
demo = gr.Interface(fn=test, inputs=
None
, outputs=
"text"
, title=
"Detector de Imágenes IA"
)
demo.launch()