antfraia commited on
Commit
87454c3
·
1 Parent(s): 8c67b0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -1,7 +1,5 @@
1
  import gradio as gr
2
 
3
- gr.load("models/google/vit-base-patch16-224").launch()
4
-
5
  iface = gr.Interface(
6
  title="Image recognition",
7
  description="Upload an image you want to categorize.",
@@ -9,5 +7,6 @@ iface = gr.Interface(
9
  live=True,
10
  capture_session=True,
11
  )
 
12
 
13
  iface.launch()
 
1
  import gradio as gr
2
 
 
 
3
  iface = gr.Interface(
4
  title="Image recognition",
5
  description="Upload an image you want to categorize.",
 
7
  live=True,
8
  capture_session=True,
9
  )
10
+ gr.load("models/google/vit-base-patch16-224").launch()
11
 
12
  iface.launch()