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

Function write_pickle

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected