Giuliano commited on
Commit
dabf2a6
·
1 Parent(s): adf7430

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -6,12 +6,8 @@ import gradio as gr
6
 
7
  ### https://huggingface.co/blog/fine-tune-vit -->> the blog post how to fine tune ViT
8
 
9
- examples = [
10
- ["example-leaf.jpeg"]
11
- ]
12
 
13
- iface = gr.Interface("huggingface/nateraw/vit-base-beans",
14
- examples=examples,
15
- theme="huggingface")
16
 
17
  iface.launch()
 
6
 
7
  ### https://huggingface.co/blog/fine-tune-vit -->> the blog post how to fine tune ViT
8
 
 
 
 
9
 
10
+ iface = gr.Interface.load("huggingface/nateraw/vit-base-beans",
11
+ )
 
12
 
13
  iface.launch()