gowtham58 commited on
Commit
391d820
·
verified ·
1 Parent(s): 5017291

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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 import pathlib plt = platform.system() if plt == 'Linux': pathlib.WindowsPath = pathlib.PosixPath
 
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)