imagine package

Subpackages

Module contents

imagine.load_pipeline(directory_path='.')[source]

Loads the state of a Pipeline object

Parameters:directory_path (str) – Path to the directory where the Pipeline state should be saved
imagine.save_pipeline(pipeline, use_hickle=False)[source]

Saves the state of a Pipeline object

Parameters:
  • pipeline (imagine.pipelines.pipeline.Pipeline) – The pipeline object one would like to save
  • use_hickle (bool) – If False (default) the state is saved using the cloudpickle package. Otherwise, experimental support to hickle is enabled.