MCPcopy Create free account
hub / github.com/Sirwenhao/Deep-Learning-Notes / write_pickle

Function write_pickle

CV/Pytorch_classification/RegNet/utils.py:107–109  ·  view source on GitHub ↗
(list_info: list, file_name: str)

Source from the content-addressed store, hash-verified

105
106
107def write_pickle(list_info: list, file_name: str):
108 with open(file_name, 'wb') as f:
109 pickle.dump(list_info, f)
110
111
112def read_pickle(file_name: str) -> list:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected