hh871's picture
Update app.py
8e5a3ec
raw
history blame
No virus
703 Bytes
from fastai.vision.all import *
import gradio as gr
import pathlib
plt = platform.system()
if plt == 'Linux':
pathlib.WindowsPath = pathlib.PosixPath
learn = load_learner('movie_genre_model.pkl')
labels = learn.dls.vocab
def predict(img):
img = PILImage.create(img)
pred,pred_idx,probs = learn.predict(img)
return {labels[i]: float(probs[i]) for i in range(len(labels))}
gr.Interface(
fn=predict,
inputs=gr.Image(shape=(182, 268)),
outputs=gr.Label(num_top_classes=3),
title= "Movie Poster Genre Classifier",
examples=['3311988.jpg', '2460746.jpg', '4840666.jpg', '2104994.jpg'],
interpretation='default',
enable_queue=True
).launch(inline=False)