File size: 300 Bytes
5ed2161
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

title = "Mi primer demo con Hugging Face"
description = "This is a Demo made with platzi classes"

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