Giuliano's picture
update
dd10b24
raw
history blame
365 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.jpg"]
]
iface = gr.Interface.load("huggingface/nateraw/vit-base-beans",
examples=examples)
iface.launch()