Spaces:
Sleeping
Sleeping
Demo 1.0
Browse files-Modelo de Prueba -
app.py
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
titulo = 'Demo con Hugging Faces'
|
4 |
+
description = 'Este es un demo y ya XD'
|
5 |
+
|
6 |
+
gr.Interface.load("huggingface/microsoft/swin-tiny-patch4-window7-224",
|
7 |
+
inputs = gr.Image(label="Carga una imagen"),
|
8 |
+
title = titulo,
|
9 |
+
description = description).launch()
|