rdjarbeng commited on
Commit
ad40028
·
1 Parent(s): cbbd38c

export with nbdev

Browse files
Files changed (1) hide show
  1. app/app.py +28 -0
app/app.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AUTOGENERATED! DO NOT EDIT! File to edit: ../app.ipynb.
2
+
3
+ # %% auto 0
4
+ __all__ = ['categories', 'image', 'label', 'examples', 'intf', 'is_cat', 'classify_image']
5
+
6
+ # %% ../app.ipynb 2
7
+ from fastai.vision.all import *
8
+ import PIL
9
+
10
+ import gradio as gr
11
+
12
+
13
+ def is_cat(x): return x[0].isupper()
14
+
15
+ # %% ../app.ipynb 7
16
+ categories= ('Dog', 'Cat')
17
+
18
+ def classify_image(img):
19
+ pred,idx, probs = learn.predict(img)
20
+ return dict(zip(categories, map(float,probs)))
21
+
22
+ # %% ../app.ipynb 9
23
+ image = gr.Image(height=192,width=192)
24
+ label = gr.Label()
25
+ examples =['dog.jpg', 'cats.jpeg', 'dogs.png']
26
+
27
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
28
+ intf.launch(inline=False)