rdjarbeng commited on
Commit
77efddf
·
1 Parent(s): 17a3c69

generate new export

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