zyx-hfut commited on
Commit
8ef426a
·
1 Parent(s): 950a320

my first time to use huggingface

Browse files
Files changed (5) hide show
  1. app.py +28 -0
  2. cat.jpg +0 -0
  3. dog.jpg +0 -0
  4. dunno.jpg +0 -0
  5. model.pkl +3 -0
app.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AUTOGENERATED! DO NOT EDIT! File to edit: 3.GardioTest.ipynb.
2
+
3
+ # %% auto 0
4
+ __all__ = ['learn', 'categories', 'image', 'label', 'examples', 'intf', 'is_cat', 'classify_image']
5
+
6
+ # %% 3.GardioTest.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
+ # %% 3.GardioTest.ipynb 3
13
+ learn = load_learner('model.pkl')
14
+
15
+ # %% 3.GardioTest.ipynb 5
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
+ # %% 3.GardioTest.ipynb 7
23
+ image = gr.Image(height=192,width=192)
24
+ label = gr.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(inline=False)
cat.jpg ADDED
dog.jpg ADDED
dunno.jpg ADDED
model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:990e3f44d4b54f682ad24153ca04d33f02e0e8788e5fc9bc790e662599fa2c27
3
+ size 47069758