Hi there,
I wanted to ask about the functionality for saving pkl files with code repositories. I know there are other methods for saving models using model objectives/adapters, but for now I just want to save the models as pkl files.
I had created this code, which used to work :
model_path = ‘thin_slice_pkl_test.pkl’
model.save(model_path)
loaded_model = LightGBMModel.load(model_path)
However, now when I run this code (2/3 weeks later), there appears to be no pkl files being saved?
It would be great to get clarity on if there has been an update in the last couple of weeks which could have caused this to stop working
Best wishes,
Mia