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