Spaces:
Runtime error
Runtime error
File size: 1,009 Bytes
625a42e a6de294 625a42e da95c85 625a42e b804560 625a42e 1ac2987 b804560 1ac2987 a6de294 1ac2987 977056f 1ac2987 a6de294 b804560 |
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 26 27 28 29 30 |
import fastai
import gradio as gr
from fastai.vision.all import *
learn = load_learner('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))}
title = "Horde or Aliance Classifier"
description = "Horde or Aliance Classifier created in Hugging Face Spaces"
article="<p style='text-align: center'><a href='https://tmabraham.github.io/blog/gradio_hf_spaces_tutorial' target='_blank'>Blog post</a></p>"
examples = ['horde.jpg']
interpretation='default'
enable_queue=True
gr.Interface(fn=predict,
inputs=gr.inputs.Image(shape=(512, 512)),
outputs=gr.outputs.Label(num_top_classes=3),
title=title,
description=description,
article=article,
examples=examples,
interpretation=interpretation,
enable_queue=enable_queue).launch()
|