jdinh's picture
Merge branch 'main' of https://huggingface.co/spaces/jdinh/freeze-detection
e74a469
raw
history blame
850 Bytes
__all__ = ['learn', 'classify_image', 'categories',
'image', 'label', 'examples', 'intf']
import timm
import gradio as gr
from fastai.vision.all import *
TITLE = Path("docs/title.txt").read_text()
DESCRIPTION = Path("docs/description.md").read_text()
learn = load_learner('model.pkl')
categories = ('airbaby', 'airchair', 'airflare', 'headspin', 'hollow back')
def classify_image(img):
pred, idx, probs = learn.predict(img)
return dict(zip(categories, map(float, probs)))
image = gr.inputs.Image(shape=(192, 192))
label = gr.outputs.Label()
examples = ['example1.jpg', 'example2.jpg',
'example3.jpg', 'example4.jpg',
'example5.jpg', 'example6.jpg', 'example7.JPG']
intf = gr.Interface(fn=classify_image, inputs=image,
outputs=label, examples=examples)
intf.launch(inline=False)