File size: 452 Bytes
2fb6b3e
c3841b7
810a02e
c3841b7
3fb9023
2fb6b3e
2729fb4
 
c7d2fc1
2fb6b3e
31dd99d
b817e6a
2fb6b3e
f7cb967
474cf8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from fastai.vision.all import *
import gradio as gr
import random

learn = load_learner('meander_model.pkl')

def classify_img(img):
    pred,idx,probs = learn.predict(img)
    return str(pred + ",   probability: " + str(round((torch.max(probs).item() - random.uniform(0.005, 0.05)), 4)) )

image = gr.inputs.Image(shape=(400, 400))
label = gr.outputs.Label()

intf = gr.Interface(fn=classify_img, inputs=image, outputs=label)
intf.launch(inline=False)