Spaces:
Sleeping
Sleeping
Ilija Eftimov
commited on
Commit
·
d23377f
1
Parent(s):
3852b19
fix typo
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ def classify_image(img):
|
|
5 |
pred, idx, probs = learn.predict(img)
|
6 |
return pred
|
7 |
|
8 |
-
learn = load_learner("
|
9 |
|
10 |
image = gr.inputs.Image(shape=(192,192))
|
11 |
label = gr.outputs.Label()
|
|
|
5 |
pred, idx, probs = learn.predict(img)
|
6 |
return pred
|
7 |
|
8 |
+
learn = load_learner("model.pkl")
|
9 |
|
10 |
image = gr.inputs.Image(shape=(192,192))
|
11 |
label = gr.outputs.Label()
|