Spaces:
Runtime error
Runtime error
update
Browse files
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()
|