File size: 254 Bytes
fa50180
 
4d4c6f8
 
fa50180
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

titulo = "Detector Imagenes"
descripcion = ""

gr.Interface.load(
    "huggingface/microsoft/swin-tiny-patch4-window7-224",
    inputs = gr.Image(label="carga una imagen"),
    title = titulo,
    description = descripcion
).launch()