smjain commited on
Commit
721a5f5
·
1 Parent(s): 0ac844e

Create new file

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ gr.Interface.load(
4
+ "huggingface/microsoft/swin-tiny-patch4-window7-224",
5
+ theme="default",
6
+ examples=[["alligator.jpg"], ["laptop.jpg"]],
7
+ css=".footer{display:none !important}",
8
+ title=None).launch()