gmykola commited on
Commit
27dd9ed
·
1 Parent(s): 959a2da

autogenerated app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -11
app.py CHANGED
@@ -1,28 +1,30 @@
1
- # AUTOGENERATED! DO NOT EDIT! File to edit: . (unless otherwise specified).
2
 
3
- __all__ = ['is_cat', 'learn', 'classify_image', 'categories', 'image', 'label', 'examples', 'intf']
 
4
 
5
- # Cell
6
  from fastai.vision.all import *
7
  from huggingface_hub import push_to_hub_fastai, from_pretrained_fastai
8
  import gradio as gr
9
 
10
  def is_cat(x): return x[0].isupper()
11
 
12
- # Cell
13
- learn = from_pretrained_fastai("fastai/cat_or_dog")
 
14
 
15
- # Cell
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
- # Cell
23
- image = gr.inputs.Image(shape=(192, 192))
24
- label = gr.outputs.Label()
25
  examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
26
 
27
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
28
- intf.launch()
 
1
+ # AUTOGENERATED! DO NOT EDIT! File to edit: app.ipynb.
2
 
3
+ # %% auto 0
4
+ __all__ = ['learn', 'categories', 'image', 'label', 'examples', 'intf', 'is_cat', 'classify_image']
5
 
6
+ # %% app.ipynb 2
7
  from fastai.vision.all import *
8
  from huggingface_hub import push_to_hub_fastai, from_pretrained_fastai
9
  import gradio as gr
10
 
11
  def is_cat(x): return x[0].isupper()
12
 
13
+ # %% app.ipynb 7
14
+ #learn = from_pretrained_fastai("fastai/cat_or_dog")
15
+ learn = load_learner('model.pkl')
16
 
17
+ # %% app.ipynb 9
18
  categories = ('Dog', 'Cat')
19
 
20
+ def classify_image(img):
21
  pred,idx,probs = learn.predict(img)
22
  return dict(zip(categories, map(float,probs)))
23
 
24
+ # %% app.ipynb 11
25
+ image = gr.Image(height=512, width=512)
26
+ label = gr.Label()
27
  examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
28
 
29
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
30
+ intf.launch()