watex.utils.funcutils.load_serialized_data#

watex.utils.funcutils.load_serialized_data(filename, verbose=0)[source]#

Load data from dumped file.

Parameters:

filename – str or path-like object Name of dumped data file.

Returns:

Data reloaded from dumped file.

Example:
>>> from watex.utils.functils import load_serialized_data
>>> data = load_serialized_data(
...    filename = '_memory_/__mymemoryfile.2021-10-29_14-49-35.647295__.pkl',
...    verbose =3)