My target structure:
- tools
- model_maker.py
- models
- models go here
My current code, which sits in the tools directory
joblib.dump(pipeline, "../models/model_full_June2020.jl")
Throws an error:
FileNotFoundError: [Errno 2] No such file or directory: '../models/model_full_June2020.jl'
I guess my path is wrong. If I remember correctly windows paths and python are different than python and other systems. When I deploy this thing to heroku, I guess it needs to work regardless of the specific system it rests on.