srinivas-mushroom commited on
Commit
6b48acb
1 Parent(s): e7bec0e

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
+
3
+ with gr.Blocks() as demo:
4
+ with gr.Tab("Vision"):
5
+ gr.Interface.load("models/google/vit-base-patch16-224", title="Vision Transformer").launch()
6
+ demo.launch()