EugenioRoma's picture
Update app.py
5d600c1
raw
history blame contribute delete
315 Bytes
import gradio as gr
titulo = "Mi primer demo con Hugging Face"
descripcion = "Este es un demo ejecutado durante la clase con Platzi."
gr.Interface.load(
"huggingface/google/vit-base-patch16-224",
inputs=gr.Image(label="Carga una imagen aquí"),
title = titulo,
description = descripcion
).launch()