muddokon commited on
Commit
91b5a3c
·
verified ·
1 Parent(s): 73ac479

Create app.py

Browse files

As instructed on
Practical Deep Learning for Coders
Course!

Files changed (1) hide show
  1. app.py +28 -0
app.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from fastai.vision.all import *
3
+ import skimage
4
+
5
+ learn = load_learner('PetNet24.pkl')
6
+
7
+ labels = learn.dls.vocab
8
+ def predict(img):
9
+ img = PILImage.create(img)
10
+ pred,pred_idx,probs = learn.predict(img)
11
+ return {labels[i]: float(probs[i]) for i in range(len(labels))}
12
+
13
+ title = "Pet Breed Classifier"
14
+ description = "A pet breed classifier trained on the Oxford Pets dataset with fastai. Created as a demo from the course by Jeremy Howard."
15
+ article="<p style='text-align: center'><a href='https://course.fast.ai/' target='_blank'>Go to course</a></p>"
16
+ examples = ['siamese.jpg']
17
+ interpretation='default'
18
+ enable_queue=True
19
+
20
+ gr.Interface(fn=predict,
21
+ inputs=gr.inputs.Image(shape=(512, 512)),
22
+ outputs=gr.outputs.Label(num_top_classes=3),
23
+ title=title,
24
+ description=description,
25
+ article=article,
26
+ examples=examples,
27
+ interpretation=interpretation,
28
+ enable_queue=enable_queue).launch()