cwtmyd commited on
Commit
badf96f
1 Parent(s): c7c6409
Files changed (4) hide show
  1. app.py +18 -4
  2. cat.jpg +0 -0
  3. dog.jpg +0 -0
  4. model.pkl +3 -0
app.py CHANGED
@@ -1,7 +1,21 @@
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
 
 
 
 
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- iface.launch()
 
1
+ # AUTOGENERATED! DO NOT EDIT! File to edit: ../app.ipynb.
2
+
3
+ # %% auto 0
4
+ __all__ = ['learn', 'image', 'label', 'examples', 'intf', 'is_cat']
5
+
6
+ # %% ../app.ipynb 1
7
+ from fastai.vision.all import *
8
  import gradio as gr
9
 
10
+ def is_cat(x): return x[0].isupper()
11
+
12
+ # %% ../app.ipynb 3
13
+ learn = load_learner('model.pkl')
14
+
15
+ # %% ../app.ipynb 7
16
+ image = gr.inputs.Image(shape=(192,192))
17
+ label = gr.outputs.Label()
18
+ examples = ['dog.jpg', 'cat.jpg']
19
 
20
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
21
+ intf.launch(inline=False)
cat.jpg ADDED
dog.jpg ADDED
model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b14f05ceeca7c8a19d0885559b4e3f70ba153fb9a9b24bbb11c4bd8669b47c9
3
+ size 47061419