concrete.ml.common.serialization.loaders.md
Last updated
Was this helpful?
concrete.ml.common.serialization.loadersLoad functions for serialization.
loadsloads(content: Union[str, bytes]) → AnyLoad any Concrete ML object that provide a dump_dict method.
Arguments:
content (Union[str, bytes]): A serialized object.
Returns:
Any: The object itself.
loadload(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
Was this helpful?
Was this helpful?