thedevvikas commited on
Commit
2977bd1
·
1 Parent(s): d9210c6

fix: Image was undefined

Browse files
Files changed (1) hide show
  1. app.py +0 -4
app.py CHANGED
@@ -18,10 +18,6 @@ def is_cat(x): return x[0].isupper()
18
  # Load the trained model
19
  learner = load_learner(fname="./dog_or_cat.pkl")
20
 
21
- # %% dog-or-cat.ipynb 7
22
- # Test the model
23
- learner.predict(image)
24
-
25
  # %% dog-or-cat.ipynb 8
26
  categories = ("Cat", "Dog")
27
 
 
18
  # Load the trained model
19
  learner = load_learner(fname="./dog_or_cat.pkl")
20
 
 
 
 
 
21
  # %% dog-or-cat.ipynb 8
22
  categories = ("Cat", "Dog")
23