Spaces:
Sleeping
Sleeping
Updated app.py to learn from bearmodel vs model
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
|
4 |
-
learn = load_learner('
|
5 |
|
6 |
def predict(img):
|
7 |
img = PILImage.create(img)
|
|
|
1 |
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
|
4 |
+
learn = load_learner('bearmodel.pkl')
|
5 |
|
6 |
def predict(img):
|
7 |
img = PILImage.create(img)
|