MCPcopy Create free account
hub / github.com/RingBDStack/GDAP / pickle_save

Function pickle_save

seq2seq/utils.py:440–443  ·  view source on GitHub ↗

pickle.dump(obj, path)

(obj, path)

Source from the content-addressed store, hash-verified

438
439
440def pickle_save(obj, path):
441 """pickle.dump(obj, path)"""
442 with open(path, "wb") as f:
443 return pickle.dump(obj, f)
444
445
446def flatten_list(summary_ids: List[List]):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected