Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
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()
|