File size: 582 Bytes
a1a617d d450a09 a1a617d 1068f61 af939c8 100ecb4 |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
from transformers import pipeline
pipe = pipeline(task="image-classification",
model="canadianjosieharrison/swinv2-large-patch4-window12-192-22k-huggingface")
gr.Interface.from_pipeline(pipe,
title="Facade material classification",
description="Upload a Google Streetview image to classify the facade materials.",
examples = ["vancouver.PNG", "toronto.PNG", "landskrona.PNG", "gtb_central_train.PNG"],
).launch(share=True) |