gpt4 book ai didi

python - Python 中的 numpy.save( ) 和 joblib.dump( ) 有什么区别?

转载 作者:太空宇宙 更新时间:2023-11-04 03:40:23 34 4
gpt4 key购买 nike

我在 Python 中保存了很多离线模型/矩阵/数组,并遇到了这些函数。有人能帮我列出 numpy.save( ) 和 joblib.dump( ) 的优缺点吗?

最佳答案

下面是 joblib 中的关键代码部分,应该可以说明一些问题。

def _write_array(self, array, filename):
if not self.compress:
self.np.save(filename, array)
container = NDArrayWrapper(os.path.basename(filename),
type(array))
else:
filename += '.z'
# Efficient compressed storage:
# The meta data is stored in the container, and the core
# numerics in a z-file
_, init_args, state = array.__reduce__()
# the last entry of 'state' is the data itself
zfile = open(filename, 'wb')
write_zfile(zfile, state[-1],
compress=self.compress)
zfile.close()
state = state[:-1]
container = ZNDArrayWrapper(os.path.basename(filename),
init_args, state)
return container, filename

基本上,joblib.dump 可以选择压缩一个数组,它可以使用 numpy.save 将其存储到磁盘,或者(用于压缩)存储一个 zip 文件。此外,joblib.dump 存储一个 NDArrayWrapper(或用于压缩的 ZNDArrayWrapper),这是一个轻量级对象,用于存储保存/压缩的名称包含数组内容和数组子类的文件。

关于python - Python 中的 numpy.save( ) 和 joblib.dump( ) 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26766599/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com