Pablogps commited on
Commit
6072f34
1 Parent(s): b34a861

renamed model name at load

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