Giuliano commited on
Commit
58ebbc9
·
1 Parent(s): 93422e5
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -4,7 +4,13 @@ import gradio as gr
4
 
5
  ### "huggingface/google/vit-base-patch16-224" this works perfectly
6
 
 
 
 
 
 
 
7
  iface = gr.Interface.load("huggingface/nateraw/vit-base-beans",
8
- )
9
 
10
  iface.launch()
 
4
 
5
  ### "huggingface/google/vit-base-patch16-224" this works perfectly
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.load("huggingface/nateraw/vit-base-beans",
14
+ examples=examples)
15
 
16
  iface.launch()