concrete.ml.common.serialization.dumpers.md
Last updated
Was this helpful?
concrete.ml.common.serialization.dumpersDump functions for serialization.
dumpsdumps(obj: Any) → strDump any object as a string.
Arguments:
obj (Any): Object to dump.
Returns:
str: A string representation of the object.
dumpdump(obj: Any, file: <class 'TextIO'>)Dump any Concrete ML object in a file.
Arguments:
obj (Any): The object to dump.
file (TextIO): The file to dump the serialized object into.
Last updated
Was this helpful?
Was this helpful?