File size: 648 Bytes
f04ef9b 0410b81 f04ef9b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from fastai.vision.all import *
import gradio as gr
def is_goku(x):
return x[0].issuper()
learn = load_learner ('model.pkl')
categories = ('Bardock', 'Goku', 'Goku Black', 'Goku Jr.', 'Goten', 'Turles')
def classify_image (img):
pred, idx, probs = learn.predict(img)
return dict(zip(categories, map(float,probs)))
image=gr.Image(type="pil")
label=gr.Label(num_top_classes=6)
examples =['Goku.jpg', 'Goku Black.jpg', 'Turles.jpg', 'Bardock.jpg', 'Goku Jr..jpg', 'Goten.jpg']
title = "Goku Lookalikes Classifier"
intf = gr.Interface(fn=classify_image,inputs=image, outputs=label, examples=examples,title=title)
intf.launch(inline=False) |