开发者

numpy存取数据(tofile/fromfile)的实现

开发者 https://www.devze.com 2023-02-21 09:43 出处:网络 作者: michaelchengjl
我们知道numpy的array是可以保存到文件的,一个常用的做法是通开发者_Python入门过to_file()保存到而进行.biHLbDMotxZcn文件中,然后再通过from_file()从.bin文件中将其读取出来,下面看一个例子。

我们知道numpy的array是可以保存到文件的,一个常用的做法是通开发者_Python入门过to_file()保存到而进行.biHLbDMotxZcn文件中,然后再通过from_file()从.bin文件中将其读取出来,下面看一个例子。

data_in 是一个二维numpy数组,其shape为[3,4]

import numpy as np
 
data_in = np.array([[1,2,3,4],[5,6,7,8],[9,10,11,12]]).astype(np.int64)
print(data_in)
 
data_in.tofile("C:/Users/Desktop/data_in.bin")
 
data_out = np.fromfile("C:/Users/Desktop/data_in.bin", dtype=np.int64)
print(data_out)
print(data_out.shape)
print(data_out.reshape(3,4))

接下来将其存入文件中,使用tofile方法即可,参数填入想要保存到的文件路径,然后使用fromfile可以将其从文件中读取出来。

但是可以发现,读取出来的data_out的shape变成1维了

首先,使用tofile方法,会默认将所有数据按顺序排成一个向量,然后以二进制形式存入文件中,而读取的时候自然会变成1维了,如果已知原始数组的维数,将它reshape一下就行了

有时候data_out的最前面几个值和之前看到的data_in的值也不一样啊,这是为什么呢?

这需要 line 14 的数据类型和 line 9 的数据类编程客栈型一致

[[ 1  2  3 &编程nbsp;4]

 [ 5  6  7  8]

 [ 9 10 11 12]]

[ 1  2  3  4  5  6  7  8  9 10 11 12]

(12,)

[[ 1  2  3  4]

 [ 5  6  7  8]

 [ 9 10 11 12]]

import numpy as np
 
input = np.random.randn(20, 224, 224, 3)
arr1 = np.array(input, dtype=np.float32)www.devze.com
print(arr1.shape)
print(arr1.dtype)
arr1.tofile("resnet50_input_BATch20.bin")

参考文章

https://cloud.tencent.com/developer/article/16705www.devze.com50

https://mlhowto.readthedocs.io/en/latest/numpy.html

到此这篇关于numpy存取数据(tofile/fromfile)的实现的文章就介绍到这了,更多相关numpy存取数据内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号