File size: 303 Bytes
653be7d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

title = "Demo con Huggin Face"
description = "Este demo ejecuta durante la clase de platzi"

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