File size: 243 Bytes
679e2f0
 
 
 
 
 
 
 
 
 
7d63a3e
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

titulo = "Un demo"
desc = "Esto es un demo"

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