Laurits's picture
Renamed model.pth to model.pkl
f9458a9
raw
history blame
420 Bytes
from fastai.vision.all import *
import gradio as gr
learn = load_learner('model.pkl')
def classify_image(img):
celebrity_name,_,probs = learn.predict(img)
return celebrity_name
image = gr.inputs.Image(shape=(224,224))
label = gr.outputs.Label()
examples = ['emma_watson.jpg', "tom_hanks.jpeg"]
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
iface.launch(inline=False)