Nifdi Guliyev commited on
Commit
2ece258
1 Parent(s): f1235a4
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -1,13 +1,12 @@
1
  from fastai.vision.all import *
2
  import gradio as gr
3
- import pathlib
4
 
5
  def is_cat(x):
6
  return x[0].isupper()
7
 
8
 
9
- temp = pathlib.PosixPath
10
- pathlib.PosixPath = pathlib.WindowsPath
11
  learn = load_learner('model.pkl')
12
 
13
 
 
1
  from fastai.vision.all import *
2
  import gradio as gr
3
+
4
 
5
  def is_cat(x):
6
  return x[0].isupper()
7
 
8
 
9
+
 
10
  learn = load_learner('model.pkl')
11
 
12