Spaces:
Build error
Build error
espejelomar
commited on
Commit
•
8986438
1
Parent(s):
f58b029
Subir demo
Browse files- Usar modelo de Microsoft
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
titulo = "Mi primer demo con Hugging Face"
|
4 |
+
descripcion = "Este es un demo ejecutado durante la clase con Platzi."
|
5 |
+
|
6 |
+
gr.Interface.load(
|
7 |
+
"huggingface/microsoft/swin-tiny-patch4-window7-224",
|
8 |
+
inputs=gr.Image(label="Carga una imagen aquí"),
|
9 |
+
title = titulo,
|
10 |
+
description = descripcion
|
11 |
+
).launch()
|