File size: 703 Bytes
afa4128
5423626
919445b
afa4128
919445b
 
 
 
afa4128
 
 
 
 
 
 
 
 
 
8e5a3ec
 
afa4128
 
 
 
e2a3f7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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)