garrytaulu commited on
Commit
b665224
1 Parent(s): 20bddf6

manual update

Browse files
Files changed (2) hide show
  1. app.py +2 -2
  2. requirements.txt +1 -0
app.py CHANGED
@@ -1,9 +1,9 @@
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.pk1')
7
 
8
  categories = ('Dog', 'Cat')
9
 
 
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
 
8
  categories = ('Dog', 'Cat')
9
 
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ fastai