pycaret.time_series.save_experiment#

pycaret.time_series.save_experiment(path_or_file: str | PathLike | BinaryIO, **cloudpickle_kwargs) None[source]#

Saves the experiment to a pickle file.

The experiment is saved using cloudpickle to deal with lambda functions. The data or test data is NOT saved with the experiment and will need to be specified again when loading using load_experiment.

path_or_file: str or BinaryIO (file pointer)

The path/file pointer to save the experiment to.

**cloudpickle_kwargs:

Kwargs to pass to the cloudpickle.dump call.

Returns:

None