Known Issues
CatBoost create a directory for persisting his state. But the Run does not allow you to create file anywhere.
If the state doesn't need to be persisted, the
/tmp
directory is the way to go.model.set_params(train_dir='/tmp/catboost_info')
If the state does need to be persisted, store everything inside the
model_directory
as this folder will be reused for the Out-of-Sample phase.info_path = os.path.join(model_directory, 'catboost_info')
model.set_params(train_dir=info_path)
Last modified 5d ago