Spaces:
Sleeping
Sleeping
Commit
·
3e33a95
1
Parent(s):
94fe6db
added application file
Browse files
app.py
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python
|
2 |
+
# coding: utf-8
|
3 |
+
|
4 |
+
get_ipython().system('pip install nbdev')
|
5 |
+
get_ipython().system('pip install ipywidgets')
|
6 |
+
|
7 |
+
get_ipython().system('pip install notebook2script')
|
8 |
+
|
9 |
+
get_ipython().system('pip install -Uqq fastai')
|
10 |
+
get_ipython().system('pip install gradio')
|
11 |
+
|
12 |
+
get_ipython().system('pip install typing_extensions==4.7.1 --upgrade')
|
13 |
+
|
14 |
+
#!export
|
15 |
+
from fastai.vision.all import *
|
16 |
+
from fastai.vision.widgets import *
|
17 |
+
import gradio as gr
|
18 |
+
|
19 |
+
#!export
|
20 |
+
categories = ("black","grizzly", "teddy")
|
21 |
+
def classify_image(img):
|
22 |
+
path = Path()
|
23 |
+
path.ls(file_exts='.pkl')
|
24 |
+
learn_inf = load_learner(path/'modlbear.pkl')
|
25 |
+
pred, idx, probs = learn_inf.predict(img)
|
26 |
+
return dict(zip(categories, map(float, probs)))
|
27 |
+
|
28 |
+
|
29 |
+
image = gr.inputs.Image(shape=(192,192))
|
30 |
+
label = gr.outputs.Label()
|
31 |
+
examples = ['black_bear.jpeg','grizzly_bear.jpeg', 'teddy_bear.jpeg']
|
32 |
+
|
33 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title="Bear Classifier")
|
34 |
+
intf.launch(inline=False, share=True)
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|