File size: 705 Bytes
8e333aa
2f27cb3
 
8e333aa
2f27cb3
 
 
96521df
 
 
 
 
4bb083d
96521df
 
2f27cb3
 
 
 
 
 
 
 
96521df
 
 
 
8e333aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import gradio as gr
from fastai.vision.all import *
from fastcore import *

learn = load_learner('architecture.pkl')
labels = learn.dls.vocab

title = "Architectural style clasisfier"
description = """
Upload a picture to this architectural classifier trained with fast.ai. 
"""
article = """
We hope you found this useful!
"""

def predict(imgpath):
    img = PILImage.create(imgpath)
    pred, pred_idx, probs = learn.predict(img)
    return {labels[i]: float(probs[i]) for i in range(len(labels))}

gr.Interface(
    fn=predict, 
    inputs=gr.inputs.Image(shape=(512, 512)),
    outputs=gr.outputs.Label(num_top_classes=3),
    title=title,
    description=description,
    article=article
).launch()