File size: 358 Bytes
63055a9
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr
title = "Mi first demo with hugging face"
description = "This is a demo executed during platzi class"
##gr.Interface.load( ## will be deprecated
gr.load(
    "huggingface/microsoft/swin-tiny-patch4-window7-224", ## Hugging Id model
    inputs=gr.Image(label="Upload an image here"),
    title=title,
    description=description
).launch()