File size: 625 Bytes
ce909ed
 
 
ac7a9e4
ce909ed
 
 
 
 
 
 
6b80f6c
1
2
3
4
5
6
7
8
9
10
11
12
13
from fastai.vision.all import *
import gradio as gr
title = 'Westworld host detector'
description = 'Upload a picture of someone to find out whether they are a Host or human.'
learn = load_learner('westworld2.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))}
examples = [['dolores.jpg'], ['hotdog.jpg']]
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), examples=examples, title=title, description=description, outputs=gr.outputs.Label(num_top_classes=3)).launch()