File size: 309 Bytes
45f1963
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

title = "Mi primer demo con Hugging Face"
description = "Este es un demo cargando un modelo de Hugging Face"

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