Mosharof commited on
Commit
e6a37c4
1 Parent(s): a3d293f

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -17
app.py DELETED
@@ -1,17 +0,0 @@
1
- from fastai.vision.all import *
2
- import gradio as gr
3
-
4
- learn = load_learner('model.pkl')
5
-
6
- categories = ('Hijab','NotHijab',"Man")
7
-
8
- def classify_image(img):
9
- pred, idx,probs = learn.predict(img)
10
- return dict(zip(categories, map(float,probs)))
11
-
12
- image = gr.inputs.Image(shape=(192,192))
13
- lebel = gr.outputs.Label()
14
- examples = ['hijab.jpeg','nothijab.jpeg','man.jpeg']
15
-
16
- intf = gr.Interface(fn=classify_image, inputs=image, outputs=lebel,examples=examples)
17
- intf.launch(inline=False)