sqlbipro commited on
Commit
953ba63
·
1 Parent(s): b00abb9
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -2,10 +2,7 @@ import gradio as gr
2
  from fastai.vision.all import *
3
  import skimage
4
 
5
- learner_instance = Learner() # Assuming Learner is your class
6
- learner_instance.load(file='export.pkl')
7
-
8
- #learn = Learner.load(file='export.pkl')
9
 
10
  labels = learn.dls.vocab
11
  def predict(img):
 
2
  from fastai.vision.all import *
3
  import skimage
4
 
5
+ learn = load_learner('export.pkl')
 
 
 
6
 
7
  labels = learn.dls.vocab
8
  def predict(img):