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

Function write_pickle

CV/Pytorch_classification/DenseNet/utils.py:94–96  ·  view source on GitHub ↗
(list_info: list, file_name: str)

Source from the content-addressed store, hash-verified

92 plt.show()
93
94def write_pickle(list_info: list, file_name: str):
95 with open(file_name, 'wb') as f:
96 pickle.dump(list_info, f)
97
98def read_pickle(file_name: str) -> list:
99 with open(file_name, 'rb') as f:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected