Eschatologist commited on
Commit
d771edc
·
1 Parent(s): 538fcf2

Updated Order

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