Spaces:
Runtime error
Runtime error
fix posixpath error
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import streamlit as st
|
|
3 |
from pathlib import Path
|
4 |
import pathlib
|
5 |
temp = pathlib.PosixPath
|
6 |
-
pathlib.PosixPath = pathlib.WindowsPath
|
7 |
from fastai.learner import load_learner
|
8 |
from PIL import Image
|
9 |
import numpy as np
|
|
|
3 |
from pathlib import Path
|
4 |
import pathlib
|
5 |
temp = pathlib.PosixPath
|
6 |
+
# pathlib.PosixPath = pathlib.WindowsPath
|
7 |
from fastai.learner import load_learner
|
8 |
from PIL import Image
|
9 |
import numpy as np
|