Spaces:
Runtime error
Runtime error
File size: 255 Bytes
679e2f0 |
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(share = True) |