space-bike / app.py
ludjan's picture
Add entries to requirements.txt and fix model file name
b8a8411
raw
history blame
No virus
604 Bytes
__all__ = ['learn', 'classify_image', 'categories', 'image', 'label', 'examples', 'intf']
from fastai.vision.all import *
import gradio as gr
import timm
# Upload your model
learn = load_learner('cycle-model.pkl')
categories = learn.dls.vocab
def classify_image(img):
pred,idx,probs = learn.predict(img)
return dict(zip(categories, map(float,probs)))
image = gr.Image()
label = gr.Label()
# Upload your own images and link them
examples = ['unicycle.jpeg', 'bicycle.jpeg', 'tricycle.png']
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
intf.launch()