Giuliano's picture
update
58ebbc9
raw
history blame
366 Bytes
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.load("huggingface/nateraw/vit-base-beans",
examples=examples)
iface.launch()