KathrynMercer commited on
Commit
77e5bfb
·
verified ·
1 Parent(s): a67aaa6

Added posix.path to fix pathing issue between linus & windows-based systems

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -2,6 +2,10 @@ import gradio as gr
2
  from fastai.vision.all import *
3
  from huggingface_hub import from_pretrained_fastai
4
 
 
 
 
 
5
  learn = from_pretrained_fastai(repo_id = "KathrynMercer/CatPatternClassifier")
6
 
7
  labels = learn.dls.vocab
 
2
  from fastai.vision.all import *
3
  from huggingface_hub import from_pretrained_fastai
4
 
5
+ import pathlib
6
+ plt = platform.system()
7
+ if plt == 'Linux': pathlib.WindowsPath = pathlib.PosixPath
8
+
9
  learn = from_pretrained_fastai(repo_id = "KathrynMercer/CatPatternClassifier")
10
 
11
  labels = learn.dls.vocab