def save_npz(filename, obj, compression=True):
"""Saves an object to the file in NPZ format.
This is a short-cut function to save only one object into an NPZ file.
Args:
filename (str): Target file name.
obj: Object to be serialized. It must support serialization protocol.
compression (bool): If ``True``, compression in the resulting zip file
is enabled.
"""
s = DictionarySerializer()
s.save(obj)
with open(filename, 'wb') as f:
if compression:
numpy.savez_compressed(f, **s.target)
else:
numpy.savez(f, **s.target)
评论列表
文章目录