Spaces:
Sleeping
Sleeping
File size: 296 Bytes
4307dc7 |
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 ejecutado durante la clase de platzi'
gr.Interface.load(
'huggingface/microsoft/swin-tiny-patch4-window7-224',
inputs=gr.Image(label=''),
title=title,
description=description
).launch() |