laurenmit commited on
Commit
a71278c
1 Parent(s): bb2a063

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
 
3
  from fastai.vision.all import *
4
 
5
- def is_cat(x): return x[1].isupper()
6
 
7
  learn = load_learner('model.pkl')
8
 
 
2
 
3
  from fastai.vision.all import *
4
 
5
+ def is_cat(x): return x[0].isupper()
6
 
7
  learn = load_learner('model.pkl')
8