concrete.ml.common.serialization.loaders
Load functions for serialization.
loads
Load any Concrete ML object that provide a dump_dict
method.
Arguments:
content
(Union[str, bytes]): A serialized object.
Returns:
Any
: The object itself.
load
Load any Concrete ML object that provide a load_dict
method.
Arguments:
file
(Union[IO[str], IO[bytes]): The file containing the serialized object.
Returns:
Any
: The object itself.