Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
learn = load_learner('export.pkl')
|
4 |
-
import platform
|
|
|
5 |
actors = learn.dls.vocab
|
6 |
def classify_images(img):
|
7 |
pred, idx, prob = learn.predict(img)
|
|
|
1 |
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
learn = load_learner('export.pkl')
|
4 |
+
import platform
|
5 |
+
import pathlib plt = platform.system() if plt == 'Linux': pathlib.WindowsPath = pathlib.PosixPath
|
6 |
actors = learn.dls.vocab
|
7 |
def classify_images(img):
|
8 |
pred, idx, prob = learn.predict(img)
|