File size: 382 Bytes
2a8a702
 
33fe0da
 
a8bf8e4
 
58ebbc9
 
 
63ce438
58ebbc9
 
adf7430
ea1bc5b
 
2a8a702
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr

### "huggingface/STSP/whole_lung_classification"

### "huggingface/google/vit-base-patch16-224" this works perfectly

### https://huggingface.co/blog/fine-tune-vit -->> the blog post how to fine tune ViT

examples = [
    ["example-leaf.jpeg"]
]

iface = gr.Interface("huggingface/nateraw/vit-base-beans",
examples=examples,
theme="huggingface")

iface.launch()