zhangzonglin1
commited on
Commit
·
824f874
1
Parent(s):
8d27eef
Add application file
Browse files
app.py
CHANGED
@@ -3,8 +3,14 @@
|
|
3 |
|
4 |
# In[ ]:
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
-
learn = learner.load("/kaggle/working/export.pkl")
|
8 |
|
9 |
def classify_image(img):
|
10 |
pred,idx,probs = learn.predict(img)
|
|
|
3 |
|
4 |
# In[ ]:
|
5 |
|
6 |
+
from fastbook import *
|
7 |
+
from fastai.vision.widgets import *
|
8 |
+
|
9 |
+
|
10 |
+
path = Path()path.ls(file_exts='.pkl')
|
11 |
+
|
12 |
+
learn = learner.load(path/"export.pkl")
|
13 |
|
|
|
14 |
|
15 |
def classify_image(img):
|
16 |
pred,idx,probs = learn.predict(img)
|