arham061 commited on
Commit
cd7686f
1 Parent(s): 373645b

Delete webApp.py

Browse files
Files changed (1) hide show
  1. webApp.py +0 -19
webApp.py DELETED
@@ -1,19 +0,0 @@
1
- from fastai import *
2
- import gradio as gr
3
-
4
- def is_cat(x): return x[0].issuper()
5
-
6
- learn = load_learner('model.pkl')
7
-
8
- categories = ('Cat', 'Dog')
9
-
10
- def classify_image(img):
11
- pred, idx, probs = learn.predict(img)
12
- return dict(zip(categories, map(float, probs)))
13
-
14
- image = gr.Inputs.Image(shape=(192,192))
15
- label = gr.outputs.label()
16
- examples = ['dog.jpg', 'cat.jpg', 'random.jpg']
17
-
18
- intf = gr.Interface(fn = classify_image, inputs = image, outputs = label, examples = examples)
19
- intf.launch(inline=False)