liquidaudit commited on
Commit
1dd45cd
·
1 Parent(s): 6c45689

fixed path issue for model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
  from fastai.vision.all import *
3
 
4
- learn = load_learner('/kaggle/input/datadump/model.pkl')
5
 
6
  labels = learn.dls.vocab
7
  def predict(img):
 
1
  import gradio as gr
2
  from fastai.vision.all import *
3
 
4
+ learn = load_learner('./model.pkl')
5
 
6
  labels = learn.dls.vocab
7
  def predict(img):