etiennebr commited on
Commit
9749873
1 Parent(s): 558cc3f
Files changed (7) hide show
  1. .gitattributes +2 -0
  2. __init__.py +1 -0
  3. app.ipynb +0 -0
  4. app.py +25 -4
  5. cat.jpg +0 -0
  6. dog.jpg +0 -0
  7. model.pkl +3 -0
.gitattributes CHANGED
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ *.pkl
36
+ filter=lfs diff=lfs merge=lfs -text
__init__.py ADDED
@@ -0,0 +1 @@
 
 
1
+ __version__ = "0.0.1"
app.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
app.py CHANGED
@@ -1,7 +1,28 @@
 
 
 
 
 
 
 
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', 'categories', 'image', 'label', 'examples', 'app', 'is_cat', 'classify_image']
5
+
6
+ # %% ../app.ipynb 2
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 4
13
+ learn = load_learner("model.pkl")
14
+
15
+ # %% ../app.ipynb 6
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 8
23
+ image = gr.Image(shape = (192, 192))
24
+ label = gr.Label()
25
+ examples = ["dog.jpg", "cat.jpg"]
26
 
27
+ app = gr.Interface(fn = classify_image, inputs=image, outputs=label, examples=examples)
28
+ app.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:d2f818ed2c1ca070d2fd6323d44c90b90158303d62a59eeb9101e0430d67d753
3
+ size 47061483