Python No such file or directory error uploading file

55 Views Asked by At
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.

2

There are 2 best solutions below

2
On

Try to use full path to file or remove ".." from src.

0
On

Maybe the error is in the space between "Logistic" and "Regresion".

Instead of : "Logistic Regression_model.pkl" try putting :"Logistic_Regression_model.pkl"