Spaces:
Sleeping
Sleeping
J
commited on
Commit
·
a7f933e
1
Parent(s):
71ad876
fixed def bug
Browse files
app.py
CHANGED
@@ -6,6 +6,8 @@ learned = load_learner('model.pkl')
|
|
6 |
|
7 |
labels = learned.dls.vocab
|
8 |
|
|
|
|
|
9 |
def predict (img):
|
10 |
img = PILImage.create(img)
|
11 |
pred, pred_idx, probs = learned.predict(img)
|
|
|
6 |
|
7 |
labels = learned.dls.vocab
|
8 |
|
9 |
+
def is_cat(x): return x[0].isupper()
|
10 |
+
|
11 |
def predict (img):
|
12 |
img = PILImage.create(img)
|
13 |
pred, pred_idx, probs = learned.predict(img)
|