Checkpointing module

Checkpointing allows to save and load serialized strategies to stop and resume experiments.

Save and load utilities

save_checkpoint(strategy, fname[, exclude])

Save the strategy state into a file.

maybe_load_checkpoint(strategy, fname[, ...])

Load the strategy state from a checkpoint file.

Optimizing datasets for checkpointing

constructor_based_serialization(pickler, ...)

This utility is used manage the pickling of an object by only storing its constructor parameters.