Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import fastai
|
|
3 |
from fastai.vision.all import *
|
4 |
|
5 |
def is_cat(x):return x[0].isupper()
|
6 |
-
learn = load_learner
|
7 |
learn.predict(im)
|
8 |
categories = ('Dog', 'Cat')
|
9 |
def classify_image(img):
|
|
|
3 |
from fastai.vision.all import *
|
4 |
|
5 |
def is_cat(x):return x[0].isupper()
|
6 |
+
learn = load_learner('model.pkl')
|
7 |
learn.predict(im)
|
8 |
categories = ('Dog', 'Cat')
|
9 |
def classify_image(img):
|