Jeroen Van Goey commited on
Commit
87fda38
1 Parent(s): b66a497

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ gr.Interface.load(
3
+ "huggingface/google/vit-base-patch32-384",
4
+ css=".footer {display:none !important}",
5
+ title=None,
6
+ description="Image classification using transformers!").launch()