concrete.ml.common.serialization.loaders.md

module concrete.ml.common.serialization.loaders

Load functions for serialization.


function loads

loads(content: Union[str, bytes]) → Any

Load any Concrete ML object that provide a dump_dict method.

Arguments:

  • content (Union[str, bytes]): A serialized object.

Returns:

  • Any: The object itself.


function load

load(file: Union[IO[str], IO[bytes]])

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.

Last updated