wgcv commited on
Commit
a71276a
1 Parent(s): f18eb43

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ titulo = "Image Classification with Hugging Face🤗"
4
+ descripcion = "This is a demo of Hugging Face 🤗 Space"
5
+ gr.load(
6
+ "huggingface/microsoft/swin-tiny-patch4-window7-224",
7
+ title=titulo,
8
+ description=descripcion,
9
+ ).launch(debug=True)