File size: 866 Bytes
30b9034
 
 
 
 
 
 
 
 
 
 
 
 
 
e7861c2
30b9034
e7861c2
 
30b9034
64bac39
af22995
30b9034
 
 
e7861c2
 
 
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
import gradio as gr
from fastai.vision.all import *
import skimage

learn = load_learner("export.pkl")


def predict(img):
    img = PILImage.create(img)
    pred, pred_idx, probs = learn.predict(img)
    result = f"Prediction: {pred}; Probability: {probs[pred_idx]:.04f}"
    return result


demo = gr.Interface(
    fn=predict,
    inputs=gr.Image(shape=(512, 512)),
    outputs=gr.Label(num_top_classes=3),
    title="Saving the silkies",
    description="A pigeon/silkie classifier. Created as a demo for entertainment and educational purposes.",
    article="<p style='text-align: center'><a href='https://blog.epinoia.com.au/2023/06/29/saving-the-silkies/' target='_blank'>Blog post related to this model</a></p>",
    examples=["IMG_3558.jpg"],
    interpretation="default",
    enable_queue=True,
)
demo.queue(concurrency_count=2, max_size=15)
demo.launch()