src/
model/
Logistic Regression_model.pkl
test/
test.py
My code
logistic_model = joblib.load('../model/Logistic Regression_model.pkl')
I have a structure with a folder layout like this. When I run the test.py file, I get the error
'FileNotFoundError: \[Errno 2\] No such file or directory: '../model/Logistic Regression_model.pkl'.
When I run the same codes as .jpynb, it does not give any errors.
When I tried it as jupyter notebook it worked. When I try it as a python file, I get the same error.
Try to use full path to file or remove ".." from src.